summaryrefslogtreecommitdiffstats
path: root/content/renderer/webplugin_delegate_proxy.cc
diff options
context:
space:
mode:
authordbeam@chromium.org <dbeam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-11-21 04:44:14 +0000
committerdbeam@chromium.org <dbeam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-11-21 04:44:14 +0000
commit997ec9fba33d3dabd0f8dff77008f8c18b1c0e77 (patch)
tree212fc4b375b7c8ae9cc301dcdf16534649893e61 /content/renderer/webplugin_delegate_proxy.cc
parent50d19e7175c1f43a6b3ebb9f82c81364746c2f00 (diff)
downloadchromium_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/renderer/webplugin_delegate_proxy.cc')
-rw-r--r--content/renderer/webplugin_delegate_proxy.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/content/renderer/webplugin_delegate_proxy.cc b/content/renderer/webplugin_delegate_proxy.cc
index e625006..a05cfec 100644
--- a/content/renderer/webplugin_delegate_proxy.cc
+++ b/content/renderer/webplugin_delegate_proxy.cc
@@ -299,8 +299,9 @@ bool WebPluginDelegateProxy::Initialize(
#if defined(OS_MACOSX)
// TODO(shess): Debugging for http://crbug.com/97285 . See comment
// in plugin_channel_host.cc.
- scoped_ptr<AutoReset<bool> > track_nested_removes(new AutoReset<bool>(
- PluginChannelHost::GetRemoveTrackingFlag(), true));
+ scoped_ptr<base::AutoReset<bool> > track_nested_removes(
+ new base::AutoReset<bool>(PluginChannelHost::GetRemoveTrackingFlag(),
+ true));
#endif
IPC::ChannelHandle channel_handle;