DevTools: consistently use camel case for URL parameter names
[chromium-blink-merge.git] / base / auto_reset.h
blobb9b0e1d5418b025502b9d2c01dbf4e3bbe4dea74
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef BASE_AUTO_RESET_H_
6 #define BASE_AUTO_RESET_H_
7 #pragma once
9 #include "base/basictypes.h"
11 // AutoReset<> is useful for setting a variable to a new value only within a
12 // particular scope. An AutoReset<> object resets a variable to its original
13 // value upon destruction, making it an alternative to writing "var = false;"
14 // or "var = old_val;" at all of a block's exit points.
16 // This should be obvious, but note that an AutoReset<> instance should have a
17 // shorter lifetime than its scoped_variable, to prevent invalid memory writes
18 // when the AutoReset<> object is destroyed.
20 template<typename T>
21 class AutoReset {
22 public:
23 AutoReset(T* scoped_variable, T new_value)
24 : scoped_variable_(scoped_variable),
25 original_value_(*scoped_variable) {
26 *scoped_variable_ = new_value;
29 ~AutoReset() { *scoped_variable_ = original_value_; }
31 private:
32 T* scoped_variable_;
33 T original_value_;
35 DISALLOW_COPY_AND_ASSIGN(AutoReset);
38 #endif // BASE_AUTO_RESET_H_