Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(270)

Unified Diff: chrome/browser/browser_process_impl.cc

Issue 10885023: Use ChromeBrowserMainPartsAndroid. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/chrome_browser_main.h » ('j') | chrome/browser/chrome_browser_main.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/browser_process_impl.cc
diff --git a/chrome/browser/browser_process_impl.cc b/chrome/browser/browser_process_impl.cc
index 7718a0b16510441fd8b2bf501c11ba94337d3bef..ca63548134af0158d16a0c8a7d9b47aaba047843 100644
--- a/chrome/browser/browser_process_impl.cc
+++ b/chrome/browser/browser_process_impl.cc
@@ -477,12 +477,14 @@ void BrowserProcessImpl::CreateDevToolsHttpProtocolHandler(
int port,
const std::string& frontend_url) {
DCHECK(CalledOnValidThread());
+#if !defined(OS_ANDROID)
// StartupBrowserCreator::LaunchBrowser can be run multiple times when browser
// is started with several profiles or existing browser process is reused.
if (!remote_debugging_server_.get()) {
Lei Zhang 2012/08/29 19:23:57 Since |remote_debugging_server_| isn't used anywhe
Yaron 2012/08/29 20:48:33 Done.
remote_debugging_server_.reset(
new RemoteDebuggingServer(profile, ip, port, frontend_url));
}
+#endif
}
bool BrowserProcessImpl::IsShuttingDown() {
« no previous file with comments | « no previous file | chrome/browser/chrome_browser_main.h » ('j') | chrome/browser/chrome_browser_main.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698