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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 virtual void ResourceDispatcherHostCreated() OVERRIDE; | 60 virtual void ResourceDispatcherHostCreated() OVERRIDE; |
61 virtual void EndSession() OVERRIDE; | 61 virtual void EndSession() OVERRIDE; |
62 virtual MetricsService* metrics_service() OVERRIDE; | 62 virtual MetricsService* metrics_service() OVERRIDE; |
63 virtual IOThread* io_thread() OVERRIDE; | 63 virtual IOThread* io_thread() OVERRIDE; |
64 virtual WatchDogThread* watchdog_thread() OVERRIDE; | 64 virtual WatchDogThread* watchdog_thread() OVERRIDE; |
65 virtual ProfileManager* profile_manager() OVERRIDE; | 65 virtual ProfileManager* profile_manager() OVERRIDE; |
66 virtual PrefService* local_state() OVERRIDE; | 66 virtual PrefService* local_state() OVERRIDE; |
67 virtual ui::Clipboard* clipboard() OVERRIDE; | 67 virtual ui::Clipboard* clipboard() OVERRIDE; |
68 virtual net::URLRequestContextGetter* system_request_context() OVERRIDE; | 68 virtual net::URLRequestContextGetter* system_request_context() OVERRIDE; |
69 virtual chrome_variations::VariationsService* variations_service() OVERRIDE; | 69 virtual chrome_variations::VariationsService* variations_service() OVERRIDE; |
| 70 virtual ChromeResourceDispatcherHostDelegate* |
| 71 resource_dispatcher_host_delegate() OVERRIDE; |
70 #if defined(OS_CHROMEOS) | 72 #if defined(OS_CHROMEOS) |
71 virtual chromeos::OomPriorityManager* oom_priority_manager() OVERRIDE; | 73 virtual chromeos::OomPriorityManager* oom_priority_manager() OVERRIDE; |
72 #endif // defined(OS_CHROMEOS) | 74 #endif // defined(OS_CHROMEOS) |
73 virtual extensions::EventRouterForwarder* | 75 virtual extensions::EventRouterForwarder* |
74 extension_event_router_forwarder() OVERRIDE; | 76 extension_event_router_forwarder() OVERRIDE; |
75 virtual NotificationUIManager* notification_ui_manager() OVERRIDE; | 77 virtual NotificationUIManager* notification_ui_manager() OVERRIDE; |
76 virtual policy::BrowserPolicyConnector* browser_policy_connector() OVERRIDE; | 78 virtual policy::BrowserPolicyConnector* browser_policy_connector() OVERRIDE; |
77 virtual policy::PolicyService* policy_service() OVERRIDE; | 79 virtual policy::PolicyService* policy_service() OVERRIDE; |
78 virtual IconManager* icon_manager() OVERRIDE; | 80 virtual IconManager* icon_manager() OVERRIDE; |
79 virtual ThumbnailGenerator* GetThumbnailGenerator() OVERRIDE; | 81 virtual ThumbnailGenerator* GetThumbnailGenerator() OVERRIDE; |
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
255 #endif | 257 #endif |
256 | 258 |
257 // TODO(eroman): Remove this when done debugging 113031. This tracks | 259 // TODO(eroman): Remove this when done debugging 113031. This tracks |
258 // the callstack which released the final module reference count. | 260 // the callstack which released the final module reference count. |
259 base::debug::StackTrace release_last_reference_callstack_; | 261 base::debug::StackTrace release_last_reference_callstack_; |
260 | 262 |
261 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); | 263 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); |
262 }; | 264 }; |
263 | 265 |
264 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ | 266 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ |
OLD | NEW |