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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 web_resource::PromoResourceService* promo_resource_service() override; | 102 web_resource::PromoResourceService* promo_resource_service() override; |
103 BrowserProcessPlatformPart* platform_part() override; | 103 BrowserProcessPlatformPart* platform_part() override; |
104 extensions::EventRouterForwarder* extension_event_router_forwarder() override; | 104 extensions::EventRouterForwarder* extension_event_router_forwarder() override; |
105 NotificationUIManager* notification_ui_manager() override; | 105 NotificationUIManager* notification_ui_manager() override; |
106 message_center::MessageCenter* message_center() override; | 106 message_center::MessageCenter* message_center() override; |
107 policy::BrowserPolicyConnector* browser_policy_connector() override; | 107 policy::BrowserPolicyConnector* browser_policy_connector() override; |
108 policy::PolicyService* policy_service() override; | 108 policy::PolicyService* policy_service() override; |
109 IconManager* icon_manager() override; | 109 IconManager* icon_manager() override; |
110 GLStringManager* gl_string_manager() override; | 110 GLStringManager* gl_string_manager() override; |
111 GpuModeManager* gpu_mode_manager() override; | 111 GpuModeManager* gpu_mode_manager() override; |
112 void CreateDevToolsHttpProtocolHandler( | 112 void CreateDevToolsHttpProtocolHandler(const std::string& ip, |
113 chrome::HostDesktopType host_desktop_type, | 113 uint16_t port) override; |
114 const std::string& ip, | |
115 uint16_t port) override; | |
116 unsigned int AddRefModule() override; | 114 unsigned int AddRefModule() override; |
117 unsigned int ReleaseModule() override; | 115 unsigned int ReleaseModule() override; |
118 bool IsShuttingDown() override; | 116 bool IsShuttingDown() override; |
119 printing::PrintJobManager* print_job_manager() override; | 117 printing::PrintJobManager* print_job_manager() override; |
120 printing::PrintPreviewDialogController* print_preview_dialog_controller() | 118 printing::PrintPreviewDialogController* print_preview_dialog_controller() |
121 override; | 119 override; |
122 printing::BackgroundPrintingManager* background_printing_manager() override; | 120 printing::BackgroundPrintingManager* background_printing_manager() override; |
123 IntranetRedirectDetector* intranet_redirect_detector() override; | 121 IntranetRedirectDetector* intranet_redirect_detector() override; |
124 const std::string& GetApplicationLocale() override; | 122 const std::string& GetApplicationLocale() override; |
125 void SetApplicationLocale(const std::string& locale) override; | 123 void SetApplicationLocale(const std::string& locale) override; |
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
331 // chrome/browser/memory/tab_manager_browsertest.cc | 329 // chrome/browser/memory/tab_manager_browsertest.cc |
332 scoped_ptr<memory::TabManager> tab_manager_; | 330 scoped_ptr<memory::TabManager> tab_manager_; |
333 #endif | 331 #endif |
334 | 332 |
335 shell_integration::DefaultWebClientState cached_default_web_client_state_; | 333 shell_integration::DefaultWebClientState cached_default_web_client_state_; |
336 | 334 |
337 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); | 335 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); |
338 }; | 336 }; |
339 | 337 |
340 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ | 338 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ |
OLD | NEW |