| 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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 NotificationUIManager* notification_ui_manager() override; | 91 NotificationUIManager* notification_ui_manager() override; |
| 92 message_center::MessageCenter* message_center() override; | 92 message_center::MessageCenter* message_center() override; |
| 93 policy::BrowserPolicyConnector* browser_policy_connector() override; | 93 policy::BrowserPolicyConnector* browser_policy_connector() override; |
| 94 policy::PolicyService* policy_service() override; | 94 policy::PolicyService* policy_service() override; |
| 95 IconManager* icon_manager() override; | 95 IconManager* icon_manager() override; |
| 96 GLStringManager* gl_string_manager() override; | 96 GLStringManager* gl_string_manager() override; |
| 97 GpuModeManager* gpu_mode_manager() override; | 97 GpuModeManager* gpu_mode_manager() override; |
| 98 void CreateDevToolsHttpProtocolHandler( | 98 void CreateDevToolsHttpProtocolHandler( |
| 99 chrome::HostDesktopType host_desktop_type, | 99 chrome::HostDesktopType host_desktop_type, |
| 100 const std::string& ip, | 100 const std::string& ip, |
| 101 int port) override; | 101 uint16 port) override; |
| 102 unsigned int AddRefModule() override; | 102 unsigned int AddRefModule() override; |
| 103 unsigned int ReleaseModule() override; | 103 unsigned int ReleaseModule() override; |
| 104 bool IsShuttingDown() override; | 104 bool IsShuttingDown() override; |
| 105 printing::PrintJobManager* print_job_manager() override; | 105 printing::PrintJobManager* print_job_manager() override; |
| 106 printing::PrintPreviewDialogController* print_preview_dialog_controller() | 106 printing::PrintPreviewDialogController* print_preview_dialog_controller() |
| 107 override; | 107 override; |
| 108 printing::BackgroundPrintingManager* background_printing_manager() override; | 108 printing::BackgroundPrintingManager* background_printing_manager() override; |
| 109 IntranetRedirectDetector* intranet_redirect_detector() override; | 109 IntranetRedirectDetector* intranet_redirect_detector() override; |
| 110 const std::string& GetApplicationLocale() override; | 110 const std::string& GetApplicationLocale() override; |
| 111 void SetApplicationLocale(const std::string& locale) override; | 111 void SetApplicationLocale(const std::string& locale) override; |
| (...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 scoped_ptr<gcm::GCMDriver> gcm_driver_; | 301 scoped_ptr<gcm::GCMDriver> gcm_driver_; |
| 302 | 302 |
| 303 #if !defined(OS_ANDROID) | 303 #if !defined(OS_ANDROID) |
| 304 scoped_ptr<ChromeDeviceClient> device_client_; | 304 scoped_ptr<ChromeDeviceClient> device_client_; |
| 305 #endif | 305 #endif |
| 306 | 306 |
| 307 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); | 307 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); |
| 308 }; | 308 }; |
| 309 | 309 |
| 310 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ | 310 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ |
| OLD | NEW |