| 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 virtual ProfileManager* profile_manager() OVERRIDE; | 80 virtual ProfileManager* profile_manager() OVERRIDE; |
| 81 virtual PrefService* local_state() OVERRIDE; | 81 virtual PrefService* local_state() OVERRIDE; |
| 82 virtual net::URLRequestContextGetter* system_request_context() OVERRIDE; | 82 virtual net::URLRequestContextGetter* system_request_context() OVERRIDE; |
| 83 virtual chrome_variations::VariationsService* variations_service() OVERRIDE; | 83 virtual chrome_variations::VariationsService* variations_service() OVERRIDE; |
| 84 virtual BrowserProcessPlatformPart* platform_part() OVERRIDE; | 84 virtual BrowserProcessPlatformPart* platform_part() OVERRIDE; |
| 85 virtual extensions::EventRouterForwarder* | 85 virtual extensions::EventRouterForwarder* |
| 86 extension_event_router_forwarder() OVERRIDE; | 86 extension_event_router_forwarder() OVERRIDE; |
| 87 virtual NotificationUIManager* notification_ui_manager() OVERRIDE; | 87 virtual NotificationUIManager* notification_ui_manager() OVERRIDE; |
| 88 virtual message_center::MessageCenter* message_center() OVERRIDE; | 88 virtual message_center::MessageCenter* message_center() OVERRIDE; |
| 89 virtual policy::BrowserPolicyConnector* browser_policy_connector() OVERRIDE; | 89 virtual policy::BrowserPolicyConnector* browser_policy_connector() OVERRIDE; |
| 90 virtual bool is_browser_policy_connector_created() OVERRIDE; |
| 90 virtual policy::PolicyService* policy_service() OVERRIDE; | 91 virtual policy::PolicyService* policy_service() OVERRIDE; |
| 91 virtual IconManager* icon_manager() OVERRIDE; | 92 virtual IconManager* icon_manager() OVERRIDE; |
| 92 virtual GLStringManager* gl_string_manager() OVERRIDE; | 93 virtual GLStringManager* gl_string_manager() OVERRIDE; |
| 93 virtual GpuModeManager* gpu_mode_manager() OVERRIDE; | 94 virtual GpuModeManager* gpu_mode_manager() OVERRIDE; |
| 94 virtual void CreateDevToolsHttpProtocolHandler( | 95 virtual void CreateDevToolsHttpProtocolHandler( |
| 95 chrome::HostDesktopType host_desktop_type, | 96 chrome::HostDesktopType host_desktop_type, |
| 96 const std::string& ip, | 97 const std::string& ip, |
| 97 int port) OVERRIDE; | 98 int port) OVERRIDE; |
| 98 virtual unsigned int AddRefModule() OVERRIDE; | 99 virtual unsigned int AddRefModule() OVERRIDE; |
| 99 virtual unsigned int ReleaseModule() OVERRIDE; | 100 virtual unsigned int ReleaseModule() OVERRIDE; |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 | 283 |
| 283 #if defined(ENABLE_WEBRTC) | 284 #if defined(ENABLE_WEBRTC) |
| 284 // Lazily initialized. | 285 // Lazily initialized. |
| 285 scoped_ptr<WebRtcLogUploader> webrtc_log_uploader_; | 286 scoped_ptr<WebRtcLogUploader> webrtc_log_uploader_; |
| 286 #endif | 287 #endif |
| 287 | 288 |
| 288 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); | 289 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); |
| 289 }; | 290 }; |
| 290 | 291 |
| 291 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ | 292 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ |
| OLD | NEW |