| 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 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 print_preview_tab_controller_; | 180 print_preview_tab_controller_; |
| 181 | 181 |
| 182 scoped_ptr<printing::BackgroundPrintingManager> background_printing_manager_; | 182 scoped_ptr<printing::BackgroundPrintingManager> background_printing_manager_; |
| 183 | 183 |
| 184 scoped_ptr<ui::Clipboard> clipboard_; | 184 scoped_ptr<ui::Clipboard> clipboard_; |
| 185 | 185 |
| 186 // Manager for desktop notification UI. | 186 // Manager for desktop notification UI. |
| 187 bool created_notification_ui_manager_; | 187 bool created_notification_ui_manager_; |
| 188 scoped_ptr<NotificationUIManager> notification_ui_manager_; | 188 scoped_ptr<NotificationUIManager> notification_ui_manager_; |
| 189 | 189 |
| 190 #if defined(ENABLE_AUTOMATION) |
| 190 scoped_ptr<AutomationProviderList> automation_provider_list_; | 191 scoped_ptr<AutomationProviderList> automation_provider_list_; |
| 192 #endif |
| 191 | 193 |
| 192 scoped_ptr<GoogleURLTracker> google_url_tracker_; | 194 scoped_ptr<GoogleURLTracker> google_url_tracker_; |
| 193 scoped_ptr<IntranetRedirectDetector> intranet_redirect_detector_; | 195 scoped_ptr<IntranetRedirectDetector> intranet_redirect_detector_; |
| 194 | 196 |
| 195 scoped_ptr<TabCloseableStateWatcher> tab_closeable_state_watcher_; | 197 scoped_ptr<TabCloseableStateWatcher> tab_closeable_state_watcher_; |
| 196 | 198 |
| 197 scoped_ptr<StatusTray> status_tray_; | 199 scoped_ptr<StatusTray> status_tray_; |
| 198 | 200 |
| 199 scoped_ptr<BackgroundModeManager> background_mode_manager_; | 201 scoped_ptr<BackgroundModeManager> background_mode_manager_; |
| 200 | 202 |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 261 #endif | 263 #endif |
| 262 | 264 |
| 263 // TODO(eroman): Remove this when done debugging 113031. This tracks | 265 // TODO(eroman): Remove this when done debugging 113031. This tracks |
| 264 // the callstack which released the final module reference count. | 266 // the callstack which released the final module reference count. |
| 265 base::debug::StackTrace release_last_reference_callstack_; | 267 base::debug::StackTrace release_last_reference_callstack_; |
| 266 | 268 |
| 267 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); | 269 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); |
| 268 }; | 270 }; |
| 269 | 271 |
| 270 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ | 272 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ |
| OLD | NEW |