diff options
author | dbeam@chromium.org <dbeam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-21 04:44:14 +0000 |
---|---|---|
committer | dbeam@chromium.org <dbeam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-21 04:44:14 +0000 |
commit | 997ec9fba33d3dabd0f8dff77008f8c18b1c0e77 (patch) | |
tree | 212fc4b375b7c8ae9cc301dcdf16534649893e61 /content/shell/shell.cc | |
parent | 50d19e7175c1f43a6b3ebb9f82c81364746c2f00 (diff) | |
download | chromium_src-997ec9fba33d3dabd0f8dff77008f8c18b1c0e77.zip chromium_src-997ec9fba33d3dabd0f8dff77008f8c18b1c0e77.tar.gz chromium_src-997ec9fba33d3dabd0f8dff77008f8c18b1c0e77.tar.bz2 |
[base] Move AutoReset to base namespace.
NOTRY=true
R=darin@chromium.org
BUG=None
Review URL: https://chromiumcodereview.appspot.com/11308132
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@168978 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/shell/shell.cc')
-rw-r--r-- | content/shell/shell.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/shell/shell.cc b/content/shell/shell.cc index 48f462d..ae0fc6e 100644 --- a/content/shell/shell.cc +++ b/content/shell/shell.cc @@ -85,7 +85,7 @@ Shell* Shell::CreateShell(WebContents* web_contents) { } void Shell::CloseAllWindows() { - AutoReset<bool> auto_reset(&quit_message_loop_, false); + base::AutoReset<bool> auto_reset(&quit_message_loop_, false); std::vector<Shell*> open_windows(windows_); for (size_t i = 0; i < open_windows.size(); ++i) open_windows[i]->Close(); |