Index: chrome/browser/plugin_service.cc |
=================================================================== |
--- chrome/browser/plugin_service.cc (revision 51385) |
+++ chrome/browser/plugin_service.cc (working copy) |
@@ -43,7 +43,7 @@ |
static void NotifyPluginsOfActivation() { |
DCHECK(ChromeThread::CurrentlyOn(ChromeThread::IO)); |
- for (ChildProcessHost::Iterator iter(ChildProcessInfo::PLUGIN_PROCESS); |
+ for (BrowserChildProcessHost::Iterator iter(ChildProcessInfo::PLUGIN_PROCESS); |
!iter.Done(); ++iter) { |
PluginProcessHost* plugin = static_cast<PluginProcessHost*>(*iter); |
plugin->OnAppActivation(); |
@@ -264,7 +264,7 @@ |
return NULL; |
} |
- for (ChildProcessHost::Iterator iter(ChildProcessInfo::PLUGIN_PROCESS); |
+ for (BrowserChildProcessHost::Iterator iter(ChildProcessInfo::PLUGIN_PROCESS); |
!iter.Done(); ++iter) { |
PluginProcessHost* plugin = static_cast<PluginProcessHost*>(*iter); |
if (plugin->info().path == plugin_path) |