| 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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 web_resource::PromoResourceService* promo_resource_service() override; | 93 web_resource::PromoResourceService* promo_resource_service() override; |
| 94 BrowserProcessPlatformPart* platform_part() override; | 94 BrowserProcessPlatformPart* platform_part() override; |
| 95 extensions::EventRouterForwarder* extension_event_router_forwarder() override; | 95 extensions::EventRouterForwarder* extension_event_router_forwarder() override; |
| 96 NotificationUIManager* notification_ui_manager() override; | 96 NotificationUIManager* notification_ui_manager() override; |
| 97 message_center::MessageCenter* message_center() override; | 97 message_center::MessageCenter* message_center() override; |
| 98 policy::BrowserPolicyConnector* browser_policy_connector() override; | 98 policy::BrowserPolicyConnector* browser_policy_connector() override; |
| 99 policy::PolicyService* policy_service() override; | 99 policy::PolicyService* policy_service() override; |
| 100 IconManager* icon_manager() override; | 100 IconManager* icon_manager() override; |
| 101 GLStringManager* gl_string_manager() override; | 101 GLStringManager* gl_string_manager() override; |
| 102 GpuModeManager* gpu_mode_manager() override; | 102 GpuModeManager* gpu_mode_manager() override; |
| 103 void CreateDevToolsHttpProtocolHandler( | 103 void CreateDevToolsHttpProtocolHandler(ui::HostDesktopType host_desktop_type, |
| 104 chrome::HostDesktopType host_desktop_type, | 104 const std::string& ip, |
| 105 const std::string& ip, | 105 uint16 port) override; |
| 106 uint16 port) override; | |
| 107 unsigned int AddRefModule() override; | 106 unsigned int AddRefModule() override; |
| 108 unsigned int ReleaseModule() override; | 107 unsigned int ReleaseModule() override; |
| 109 bool IsShuttingDown() override; | 108 bool IsShuttingDown() override; |
| 110 printing::PrintJobManager* print_job_manager() override; | 109 printing::PrintJobManager* print_job_manager() override; |
| 111 printing::PrintPreviewDialogController* print_preview_dialog_controller() | 110 printing::PrintPreviewDialogController* print_preview_dialog_controller() |
| 112 override; | 111 override; |
| 113 printing::BackgroundPrintingManager* background_printing_manager() override; | 112 printing::BackgroundPrintingManager* background_printing_manager() override; |
| 114 IntranetRedirectDetector* intranet_redirect_detector() override; | 113 IntranetRedirectDetector* intranet_redirect_detector() override; |
| 115 const std::string& GetApplicationLocale() override; | 114 const std::string& GetApplicationLocale() override; |
| 116 void SetApplicationLocale(const std::string& locale) override; | 115 void SetApplicationLocale(const std::string& locale) override; |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 321 // chrome/browser/memory/oom_priority_manager_browsertest.cc | 320 // chrome/browser/memory/oom_priority_manager_browsertest.cc |
| 322 scoped_ptr<memory::OomPriorityManager> oom_priority_manager_; | 321 scoped_ptr<memory::OomPriorityManager> oom_priority_manager_; |
| 323 #endif | 322 #endif |
| 324 | 323 |
| 325 ShellIntegration::DefaultWebClientState cached_default_web_client_state_; | 324 ShellIntegration::DefaultWebClientState cached_default_web_client_state_; |
| 326 | 325 |
| 327 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); | 326 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); |
| 328 }; | 327 }; |
| 329 | 328 |
| 330 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ | 329 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ |
| OLD | NEW |