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 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
240 bool created_notification_ui_manager_; | 240 bool created_notification_ui_manager_; |
241 scoped_ptr<NotificationUIManager> notification_ui_manager_; | 241 scoped_ptr<NotificationUIManager> notification_ui_manager_; |
242 | 242 |
243 scoped_ptr<AutomationProviderList> automation_provider_list_; | 243 scoped_ptr<AutomationProviderList> automation_provider_list_; |
244 | 244 |
245 scoped_ptr<GoogleURLTracker> google_url_tracker_; | 245 scoped_ptr<GoogleURLTracker> google_url_tracker_; |
246 scoped_ptr<IntranetRedirectDetector> intranet_redirect_detector_; | 246 scoped_ptr<IntranetRedirectDetector> intranet_redirect_detector_; |
247 | 247 |
248 scoped_ptr<TabCloseableStateWatcher> tab_closeable_state_watcher_; | 248 scoped_ptr<TabCloseableStateWatcher> tab_closeable_state_watcher_; |
249 | 249 |
| 250 scoped_ptr<StatusTray> status_tray_; |
| 251 |
250 scoped_ptr<BackgroundModeManager> background_mode_manager_; | 252 scoped_ptr<BackgroundModeManager> background_mode_manager_; |
251 | 253 |
252 scoped_ptr<StatusTray> status_tray_; | |
253 | |
254 bool created_safe_browsing_service_; | 254 bool created_safe_browsing_service_; |
255 scoped_refptr<SafeBrowsingService> safe_browsing_service_; | 255 scoped_refptr<SafeBrowsingService> safe_browsing_service_; |
256 | 256 |
257 unsigned int module_ref_count_; | 257 unsigned int module_ref_count_; |
258 bool did_start_; | 258 bool did_start_; |
259 | 259 |
260 // Ensures that all the print jobs are finished before closing the browser. | 260 // Ensures that all the print jobs are finished before closing the browser. |
261 scoped_ptr<printing::PrintJobManager> print_job_manager_; | 261 scoped_ptr<printing::PrintJobManager> print_job_manager_; |
262 | 262 |
263 std::string locale_; | 263 std::string locale_; |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
321 #if !defined(OS_CHROMEOS) | 321 #if !defined(OS_CHROMEOS) |
322 scoped_ptr<ComponentUpdateService> component_updater_; | 322 scoped_ptr<ComponentUpdateService> component_updater_; |
323 | 323 |
324 scoped_refptr<CRLSetFetcher> crl_set_fetcher_; | 324 scoped_refptr<CRLSetFetcher> crl_set_fetcher_; |
325 #endif | 325 #endif |
326 | 326 |
327 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); | 327 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); |
328 }; | 328 }; |
329 | 329 |
330 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ | 330 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ |
OLD | NEW |