summaryrefslogtreecommitdiffstats
path: root/chrome/browser/browser_process_impl.cc
diff options
context:
space:
mode:
authorsanjeevr@chromium.org <sanjeevr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-03 05:47:42 +0000
committersanjeevr@chromium.org <sanjeevr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-03 05:47:42 +0000
commitd27893f65dbd01a0d88dcda2a69f518e4b8a636d (patch)
tree7b0573f1158681243b6605bd9f67521c9ee3193c /chrome/browser/browser_process_impl.cc
parentdfe7f3288af471067ecd9117049e96aa39778da9 (diff)
downloadchromium_src-d27893f65dbd01a0d88dcda2a69f518e4b8a636d.zip
chromium_src-d27893f65dbd01a0d88dcda2a69f518e4b8a636d.tar.gz
chromium_src-d27893f65dbd01a0d88dcda2a69f518e4b8a636d.tar.bz2
Moved common parts of ChildProcessHost into chrome/common and created a BrowserChildProcessHost with browser-specific implementation. This is in preparation of creating a ServiceChildProcessHost.
BUG=None TEST=Test for regressions . Review URL: http://codereview.chromium.org/2885017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51593 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/browser_process_impl.cc')
-rw-r--r--chrome/browser/browser_process_impl.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/browser_process_impl.cc b/chrome/browser/browser_process_impl.cc
index 52421ff..6f93446 100644
--- a/chrome/browser/browser_process_impl.cc
+++ b/chrome/browser/browser_process_impl.cc
@@ -14,11 +14,11 @@
#include "base/thread.h"
#include "base/waitable_event.h"
#include "chrome/browser/appcache/chrome_appcache_service.h"
+#include "chrome/browser/browser_child_process_host.h"
#include "chrome/browser/browser_list.h"
#include "chrome/browser/browser_main.h"
#include "chrome/browser/browser_process_sub_thread.h"
#include "chrome/browser/browser_trial.h"
-#include "chrome/browser/child_process_host.h"
#include "chrome/browser/chrome_thread.h"
#include "chrome/browser/debugger/debugger_wrapper.h"
#include "chrome/browser/debugger/devtools_manager.h"
@@ -509,7 +509,7 @@ void BrowserProcessImpl::SetIPCLoggingEnabled(bool enable) {
void BrowserProcessImpl::SetIPCLoggingEnabledForChildProcesses(bool enabled) {
DCHECK(ChromeThread::CurrentlyOn(ChromeThread::IO));
- ChildProcessHost::Iterator i; // default constr references a singleton
+ BrowserChildProcessHost::Iterator i; // default constr references a singleton
while (!i.Done()) {
i->Send(new PluginProcessMsg_SetIPCLoggingEnabled(enabled));
++i;