| 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 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 309 // to concerns over integrity of data shared between profiles, | 309 // to concerns over integrity of data shared between profiles, |
| 310 // but some users of component updater only install per-user. | 310 // but some users of component updater only install per-user. |
| 311 std::unique_ptr<component_updater::ComponentUpdateService> component_updater_; | 311 std::unique_ptr<component_updater::ComponentUpdateService> component_updater_; |
| 312 scoped_refptr<CRLSetFetcher> crl_set_fetcher_; | 312 scoped_refptr<CRLSetFetcher> crl_set_fetcher_; |
| 313 | 313 |
| 314 #if !defined(DISABLE_NACL) | 314 #if !defined(DISABLE_NACL) |
| 315 scoped_refptr<component_updater::PnaclComponentInstaller> | 315 scoped_refptr<component_updater::PnaclComponentInstaller> |
| 316 pnacl_component_installer_; | 316 pnacl_component_installer_; |
| 317 #endif | 317 #endif |
| 318 | 318 |
| 319 #if BUILDFLAG(ENABLE_SUPERVISED_USERS) |
| 319 std::unique_ptr<component_updater::SupervisedUserWhitelistInstaller> | 320 std::unique_ptr<component_updater::SupervisedUserWhitelistInstaller> |
| 320 supervised_user_whitelist_installer_; | 321 supervised_user_whitelist_installer_; |
| 322 #endif |
| 321 | 323 |
| 322 #if BUILDFLAG(ENABLE_PLUGINS) | 324 #if BUILDFLAG(ENABLE_PLUGINS) |
| 323 std::unique_ptr<PluginsResourceService> plugins_resource_service_; | 325 std::unique_ptr<PluginsResourceService> plugins_resource_service_; |
| 324 #endif | 326 #endif |
| 325 | 327 |
| 326 std::unique_ptr<BrowserProcessPlatformPart> platform_part_; | 328 std::unique_ptr<BrowserProcessPlatformPart> platform_part_; |
| 327 | 329 |
| 328 // TODO(eroman): Remove this when done debugging 113031. This tracks | 330 // TODO(eroman): Remove this when done debugging 113031. This tracks |
| 329 // the callstack which released the final module reference count. | 331 // the callstack which released the final module reference count. |
| 330 base::debug::StackTrace release_last_reference_callstack_; | 332 base::debug::StackTrace release_last_reference_callstack_; |
| (...skipping 21 matching lines...) Expand all Loading... |
| 352 | 354 |
| 353 std::unique_ptr<physical_web::PhysicalWebDataSource> | 355 std::unique_ptr<physical_web::PhysicalWebDataSource> |
| 354 physical_web_data_source_; | 356 physical_web_data_source_; |
| 355 | 357 |
| 356 SEQUENCE_CHECKER(sequence_checker_); | 358 SEQUENCE_CHECKER(sequence_checker_); |
| 357 | 359 |
| 358 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); | 360 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); |
| 359 }; | 361 }; |
| 360 | 362 |
| 361 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ | 363 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ |
| OLD | NEW |