| 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 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 | 252 |
| 253 scoped_ptr<TabCloseableStateWatcher> tab_closeable_state_watcher_; | 253 scoped_ptr<TabCloseableStateWatcher> tab_closeable_state_watcher_; |
| 254 | 254 |
| 255 scoped_ptr<BackgroundModeManager> background_mode_manager_; | 255 scoped_ptr<BackgroundModeManager> background_mode_manager_; |
| 256 | 256 |
| 257 scoped_ptr<StatusTray> status_tray_; | 257 scoped_ptr<StatusTray> status_tray_; |
| 258 | 258 |
| 259 bool created_safe_browsing_service_; | 259 bool created_safe_browsing_service_; |
| 260 scoped_refptr<SafeBrowsingService> safe_browsing_service_; | 260 scoped_refptr<SafeBrowsingService> safe_browsing_service_; |
| 261 | 261 |
| 262 bool created_safe_browsing_detection_service_; | |
| 263 scoped_ptr<safe_browsing::ClientSideDetectionService> | |
| 264 safe_browsing_detection_service_; | |
| 265 | |
| 266 unsigned int module_ref_count_; | 262 unsigned int module_ref_count_; |
| 267 bool did_start_; | 263 bool did_start_; |
| 268 | 264 |
| 269 // Ensures that all the print jobs are finished before closing the browser. | 265 // Ensures that all the print jobs are finished before closing the browser. |
| 270 scoped_ptr<printing::PrintJobManager> print_job_manager_; | 266 scoped_ptr<printing::PrintJobManager> print_job_manager_; |
| 271 | 267 |
| 272 std::string locale_; | 268 std::string locale_; |
| 273 | 269 |
| 274 bool checked_for_new_frames_; | 270 bool checked_for_new_frames_; |
| 275 bool using_new_frames_; | 271 bool using_new_frames_; |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 327 scoped_refptr<GpuBlacklistUpdater> gpu_blacklist_updater_; | 323 scoped_refptr<GpuBlacklistUpdater> gpu_blacklist_updater_; |
| 328 | 324 |
| 329 #if !defined(OS_CHROMEOS) | 325 #if !defined(OS_CHROMEOS) |
| 330 scoped_ptr<ComponentUpdateService> component_updater_; | 326 scoped_ptr<ComponentUpdateService> component_updater_; |
| 331 #endif | 327 #endif |
| 332 | 328 |
| 333 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); | 329 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); |
| 334 }; | 330 }; |
| 335 | 331 |
| 336 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ | 332 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ |
| OLD | NEW |