Chromium Code Reviews

Unified Diff: chrome/browser/plugin_service.cc

Issue 2885017: Moved common parts of ChildProcessHost into chrome/common and created a Brows... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Code review changes Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « chrome/browser/plugin_process_host.cc ('k') | chrome/browser/profile_import_process_host.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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)
« no previous file with comments | « chrome/browser/plugin_process_host.cc ('k') | chrome/browser/profile_import_process_host.h » ('j') | no next file with comments »

Powered by Google App Engine