| 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 void PostDestroyThreads(); | 90 void PostDestroyThreads(); |
| 91 #endif | 91 #endif |
| 92 | 92 |
| 93 // BrowserProcess implementation. | 93 // BrowserProcess implementation. |
| 94 void ResourceDispatcherHostCreated() override; | 94 void ResourceDispatcherHostCreated() override; |
| 95 void EndSession() override; | 95 void EndSession() override; |
| 96 metrics_services_manager::MetricsServicesManager* GetMetricsServicesManager() | 96 metrics_services_manager::MetricsServicesManager* GetMetricsServicesManager() |
| 97 override; | 97 override; |
| 98 metrics::MetricsService* metrics_service() override; | 98 metrics::MetricsService* metrics_service() override; |
| 99 rappor::RapporServiceImpl* rappor_service() override; | 99 rappor::RapporServiceImpl* rappor_service() override; |
| 100 ukm::UkmService* ukm_service() override; | 100 ukm::UkmRecorder* ukm_recorder() override; |
| 101 IOThread* io_thread() override; | 101 IOThread* io_thread() override; |
| 102 WatchDogThread* watchdog_thread() override; | 102 WatchDogThread* watchdog_thread() override; |
| 103 ProfileManager* profile_manager() override; | 103 ProfileManager* profile_manager() override; |
| 104 PrefService* local_state() override; | 104 PrefService* local_state() override; |
| 105 net::URLRequestContextGetter* system_request_context() override; | 105 net::URLRequestContextGetter* system_request_context() override; |
| 106 variations::VariationsService* variations_service() override; | 106 variations::VariationsService* variations_service() override; |
| 107 BrowserProcessPlatformPart* platform_part() override; | 107 BrowserProcessPlatformPart* platform_part() override; |
| 108 extensions::EventRouterForwarder* extension_event_router_forwarder() override; | 108 extensions::EventRouterForwarder* extension_event_router_forwarder() override; |
| 109 NotificationUIManager* notification_ui_manager() override; | 109 NotificationUIManager* notification_ui_manager() override; |
| 110 NotificationPlatformBridge* notification_platform_bridge() override; | 110 NotificationPlatformBridge* notification_platform_bridge() override; |
| (...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 351 | 351 |
| 352 shell_integration::DefaultWebClientState cached_default_web_client_state_; | 352 shell_integration::DefaultWebClientState cached_default_web_client_state_; |
| 353 | 353 |
| 354 std::unique_ptr<physical_web::PhysicalWebDataSource> | 354 std::unique_ptr<physical_web::PhysicalWebDataSource> |
| 355 physical_web_data_source_; | 355 physical_web_data_source_; |
| 356 | 356 |
| 357 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); | 357 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); |
| 358 }; | 358 }; |
| 359 | 359 |
| 360 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ | 360 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ |
| OLD | NEW |