| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 scoped_ptr<IconManager> icon_manager_; | 216 scoped_ptr<IconManager> icon_manager_; |
| 217 | 217 |
| 218 scoped_refptr<ExtensionEventRouterForwarder> | 218 scoped_refptr<ExtensionEventRouterForwarder> |
| 219 extension_event_router_forwarder_; | 219 extension_event_router_forwarder_; |
| 220 | 220 |
| 221 scoped_ptr<RemoteDebuggingServer> remote_debugging_server_; | 221 scoped_ptr<RemoteDebuggingServer> remote_debugging_server_; |
| 222 | 222 |
| 223 scoped_refptr<DevToolsProtocolHandler> devtools_legacy_handler_; | 223 scoped_refptr<DevToolsProtocolHandler> devtools_legacy_handler_; |
| 224 | 224 |
| 225 bool created_devtools_manager_; | 225 bool created_devtools_manager_; |
| 226 scoped_refptr<DevToolsManager> devtools_manager_; | 226 scoped_ptr<DevToolsManager> devtools_manager_; |
| 227 | 227 |
| 228 bool created_sidebar_manager_; | 228 bool created_sidebar_manager_; |
| 229 scoped_refptr<SidebarManager> sidebar_manager_; | 229 scoped_refptr<SidebarManager> sidebar_manager_; |
| 230 | 230 |
| 231 bool created_browser_policy_connector_; | 231 bool created_browser_policy_connector_; |
| 232 scoped_ptr<policy::BrowserPolicyConnector> browser_policy_connector_; | 232 scoped_ptr<policy::BrowserPolicyConnector> browser_policy_connector_; |
| 233 | 233 |
| 234 scoped_refptr<printing::PrintPreviewTabController> | 234 scoped_refptr<printing::PrintPreviewTabController> |
| 235 print_preview_tab_controller_; | 235 print_preview_tab_controller_; |
| 236 | 236 |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 scoped_refptr<GpuBlacklistUpdater> gpu_blacklist_updater_; | 324 scoped_refptr<GpuBlacklistUpdater> gpu_blacklist_updater_; |
| 325 | 325 |
| 326 #if !defined(OS_CHROMEOS) | 326 #if !defined(OS_CHROMEOS) |
| 327 scoped_ptr<ComponentUpdateService> component_updater_; | 327 scoped_ptr<ComponentUpdateService> component_updater_; |
| 328 #endif | 328 #endif |
| 329 | 329 |
| 330 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); | 330 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); |
| 331 }; | 331 }; |
| 332 | 332 |
| 333 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ | 333 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ |
| OLD | NEW |