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

Side by Side Diff: chrome/browser/browser_process_impl.h

Issue 189233008: DevTools: remove the --remote-debugging-frontend flag. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: For landing Created 6 years, 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/browser_process.h ('k') | chrome/browser/browser_process_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // When each service is created, we set a flag indicating this. At this point, 5 // When each service is created, we set a flag indicating this. At this point,
6 // the service initialization could fail or succeed. This allows us to remember 6 // the service initialization could fail or succeed. This allows us to remember
7 // if we tried to create a service, and not try creating it over and over if 7 // if we tried to create a service, and not try creating it over and over if
8 // the creation failed. 8 // the creation failed.
9 9
10 #ifndef CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ 10 #ifndef CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 virtual message_center::MessageCenter* message_center() OVERRIDE; 87 virtual message_center::MessageCenter* message_center() OVERRIDE;
88 virtual policy::BrowserPolicyConnector* browser_policy_connector() OVERRIDE; 88 virtual policy::BrowserPolicyConnector* browser_policy_connector() OVERRIDE;
89 virtual policy::PolicyService* policy_service() OVERRIDE; 89 virtual policy::PolicyService* policy_service() OVERRIDE;
90 virtual IconManager* icon_manager() OVERRIDE; 90 virtual IconManager* icon_manager() OVERRIDE;
91 virtual GLStringManager* gl_string_manager() OVERRIDE; 91 virtual GLStringManager* gl_string_manager() OVERRIDE;
92 virtual GpuModeManager* gpu_mode_manager() OVERRIDE; 92 virtual GpuModeManager* gpu_mode_manager() OVERRIDE;
93 virtual AutomationProviderList* GetAutomationProviderList() OVERRIDE; 93 virtual AutomationProviderList* GetAutomationProviderList() OVERRIDE;
94 virtual void CreateDevToolsHttpProtocolHandler( 94 virtual void CreateDevToolsHttpProtocolHandler(
95 chrome::HostDesktopType host_desktop_type, 95 chrome::HostDesktopType host_desktop_type,
96 const std::string& ip, 96 const std::string& ip,
97 int port, 97 int port) OVERRIDE;
98 const std::string& frontend_url) OVERRIDE;
99 virtual unsigned int AddRefModule() OVERRIDE; 98 virtual unsigned int AddRefModule() OVERRIDE;
100 virtual unsigned int ReleaseModule() OVERRIDE; 99 virtual unsigned int ReleaseModule() OVERRIDE;
101 virtual bool IsShuttingDown() OVERRIDE; 100 virtual bool IsShuttingDown() OVERRIDE;
102 virtual printing::PrintJobManager* print_job_manager() OVERRIDE; 101 virtual printing::PrintJobManager* print_job_manager() OVERRIDE;
103 virtual printing::PrintPreviewDialogController* 102 virtual printing::PrintPreviewDialogController*
104 print_preview_dialog_controller() OVERRIDE; 103 print_preview_dialog_controller() OVERRIDE;
105 virtual printing::BackgroundPrintingManager* 104 virtual printing::BackgroundPrintingManager*
106 background_printing_manager() OVERRIDE; 105 background_printing_manager() OVERRIDE;
107 virtual IntranetRedirectDetector* intranet_redirect_detector() OVERRIDE; 106 virtual IntranetRedirectDetector* intranet_redirect_detector() OVERRIDE;
108 virtual const std::string& GetApplicationLocale() OVERRIDE; 107 virtual const std::string& GetApplicationLocale() OVERRIDE;
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 294
296 #if defined(ENABLE_WEBRTC) 295 #if defined(ENABLE_WEBRTC)
297 // Lazily initialized. 296 // Lazily initialized.
298 scoped_ptr<WebRtcLogUploader> webrtc_log_uploader_; 297 scoped_ptr<WebRtcLogUploader> webrtc_log_uploader_;
299 #endif 298 #endif
300 299
301 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); 300 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl);
302 }; 301 };
303 302
304 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ 303 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_
OLDNEW
« no previous file with comments | « chrome/browser/browser_process.h ('k') | chrome/browser/browser_process_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698