| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |