| 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 net::URLRequestContextGetter* system_request_context() OVERRIDE; | 87 virtual net::URLRequestContextGetter* system_request_context() OVERRIDE; |
| 88 virtual chrome_variations::VariationsService* variations_service() OVERRIDE; | 88 virtual chrome_variations::VariationsService* variations_service() OVERRIDE; |
| 89 virtual BrowserProcessPlatformPart* platform_part() OVERRIDE; | 89 virtual BrowserProcessPlatformPart* platform_part() OVERRIDE; |
| 90 virtual extensions::EventRouterForwarder* | 90 virtual extensions::EventRouterForwarder* |
| 91 extension_event_router_forwarder() OVERRIDE; | 91 extension_event_router_forwarder() OVERRIDE; |
| 92 virtual NotificationUIManager* notification_ui_manager() OVERRIDE; | 92 virtual NotificationUIManager* notification_ui_manager() OVERRIDE; |
| 93 virtual message_center::MessageCenter* message_center() OVERRIDE; | 93 virtual message_center::MessageCenter* message_center() OVERRIDE; |
| 94 virtual policy::BrowserPolicyConnector* browser_policy_connector() OVERRIDE; | 94 virtual policy::BrowserPolicyConnector* browser_policy_connector() OVERRIDE; |
| 95 virtual policy::PolicyService* policy_service() OVERRIDE; | 95 virtual policy::PolicyService* policy_service() OVERRIDE; |
| 96 virtual IconManager* icon_manager() OVERRIDE; | 96 virtual IconManager* icon_manager() OVERRIDE; |
| 97 virtual GLStringManager* gl_string_manager() OVERRIDE; | |
| 98 virtual GpuModeManager* gpu_mode_manager() OVERRIDE; | 97 virtual GpuModeManager* gpu_mode_manager() OVERRIDE; |
| 98 virtual GpuPrefManager* gpu_pref_manager() OVERRIDE; |
| 99 virtual void CreateDevToolsHttpProtocolHandler( | 99 virtual void CreateDevToolsHttpProtocolHandler( |
| 100 chrome::HostDesktopType host_desktop_type, | 100 chrome::HostDesktopType host_desktop_type, |
| 101 const std::string& ip, | 101 const std::string& ip, |
| 102 int port) OVERRIDE; | 102 int port) OVERRIDE; |
| 103 virtual unsigned int AddRefModule() OVERRIDE; | 103 virtual unsigned int AddRefModule() OVERRIDE; |
| 104 virtual unsigned int ReleaseModule() OVERRIDE; | 104 virtual unsigned int ReleaseModule() OVERRIDE; |
| 105 virtual bool IsShuttingDown() OVERRIDE; | 105 virtual bool IsShuttingDown() OVERRIDE; |
| 106 virtual printing::PrintJobManager* print_job_manager() OVERRIDE; | 106 virtual printing::PrintJobManager* print_job_manager() OVERRIDE; |
| 107 virtual printing::PrintPreviewDialogController* | 107 virtual printing::PrintPreviewDialogController* |
| 108 print_preview_dialog_controller() OVERRIDE; | 108 print_preview_dialog_controller() OVERRIDE; |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 | 183 |
| 184 bool created_profile_manager_; | 184 bool created_profile_manager_; |
| 185 scoped_ptr<ProfileManager> profile_manager_; | 185 scoped_ptr<ProfileManager> profile_manager_; |
| 186 | 186 |
| 187 bool created_local_state_; | 187 bool created_local_state_; |
| 188 scoped_ptr<PrefService> local_state_; | 188 scoped_ptr<PrefService> local_state_; |
| 189 | 189 |
| 190 bool created_icon_manager_; | 190 bool created_icon_manager_; |
| 191 scoped_ptr<IconManager> icon_manager_; | 191 scoped_ptr<IconManager> icon_manager_; |
| 192 | 192 |
| 193 scoped_ptr<GLStringManager> gl_string_manager_; | 193 scoped_ptr<GpuModeManager> gpu_mode_manager_; |
| 194 | 194 |
| 195 scoped_ptr<GpuModeManager> gpu_mode_manager_; | 195 scoped_ptr<GpuPrefManager> gpu_pref_manager_; |
| 196 | 196 |
| 197 #if defined(ENABLE_EXTENSIONS) | 197 #if defined(ENABLE_EXTENSIONS) |
| 198 scoped_ptr<extensions::ExtensionsBrowserClient> extensions_browser_client_; | 198 scoped_ptr<extensions::ExtensionsBrowserClient> extensions_browser_client_; |
| 199 | 199 |
| 200 scoped_refptr<extensions::EventRouterForwarder> | 200 scoped_refptr<extensions::EventRouterForwarder> |
| 201 extension_event_router_forwarder_; | 201 extension_event_router_forwarder_; |
| 202 | 202 |
| 203 scoped_ptr<MediaFileSystemRegistry> media_file_system_registry_; | 203 scoped_ptr<MediaFileSystemRegistry> media_file_system_registry_; |
| 204 #endif | 204 #endif |
| 205 | 205 |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 295 #endif | 295 #endif |
| 296 | 296 |
| 297 scoped_ptr<network_time::NetworkTimeTracker> network_time_tracker_; | 297 scoped_ptr<network_time::NetworkTimeTracker> network_time_tracker_; |
| 298 | 298 |
| 299 scoped_ptr<gcm::GCMDriver> gcm_driver_; | 299 scoped_ptr<gcm::GCMDriver> gcm_driver_; |
| 300 | 300 |
| 301 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); | 301 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); |
| 302 }; | 302 }; |
| 303 | 303 |
| 304 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ | 304 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ |
| OLD | NEW |