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