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 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
197 scoped_refptr<extensions::EventRouterForwarder> | 197 scoped_refptr<extensions::EventRouterForwarder> |
198 extension_event_router_forwarder_; | 198 extension_event_router_forwarder_; |
199 | 199 |
200 scoped_ptr<MediaFileSystemRegistry> media_file_system_registry_; | 200 scoped_ptr<MediaFileSystemRegistry> media_file_system_registry_; |
201 #endif | 201 #endif |
202 | 202 |
203 #if !defined(OS_ANDROID) | 203 #if !defined(OS_ANDROID) |
204 scoped_ptr<RemoteDebuggingServer> remote_debugging_server_; | 204 scoped_ptr<RemoteDebuggingServer> remote_debugging_server_; |
205 #endif | 205 #endif |
206 | 206 |
207 #if defined(ENABLE_FULL_PRINTING) | 207 #if defined(ENABLE_PRINT_PREVIEW) |
208 scoped_refptr<printing::PrintPreviewDialogController> | 208 scoped_refptr<printing::PrintPreviewDialogController> |
209 print_preview_dialog_controller_; | 209 print_preview_dialog_controller_; |
210 | 210 |
211 scoped_ptr<printing::BackgroundPrintingManager> background_printing_manager_; | 211 scoped_ptr<printing::BackgroundPrintingManager> background_printing_manager_; |
212 #endif | 212 #endif |
213 | 213 |
214 // Manager for desktop notification UI. | 214 // Manager for desktop notification UI. |
215 bool created_notification_ui_manager_; | 215 bool created_notification_ui_manager_; |
216 scoped_ptr<NotificationUIManager> notification_ui_manager_; | 216 scoped_ptr<NotificationUIManager> notification_ui_manager_; |
217 | 217 |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
301 scoped_ptr<gcm::GCMDriver> gcm_driver_; | 301 scoped_ptr<gcm::GCMDriver> gcm_driver_; |
302 | 302 |
303 #if !defined(OS_ANDROID) | 303 #if !defined(OS_ANDROID) |
304 scoped_ptr<ChromeDeviceClient> device_client_; | 304 scoped_ptr<ChromeDeviceClient> device_client_; |
305 #endif | 305 #endif |
306 | 306 |
307 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); | 307 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); |
308 }; | 308 }; |
309 | 309 |
310 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ | 310 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ |
OLD | NEW |