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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 void PreStopThread(content::BrowserThread::ID identifier); | 59 void PreStopThread(content::BrowserThread::ID identifier); |
60 void PostStopThread(content::BrowserThread::ID identifier); | 60 void PostStopThread(content::BrowserThread::ID identifier); |
61 | 61 |
62 base::Thread* process_launcher_thread(); | 62 base::Thread* process_launcher_thread(); |
63 | 63 |
64 // BrowserProcess methods | 64 // BrowserProcess methods |
65 virtual void EndSession() OVERRIDE; | 65 virtual void EndSession() OVERRIDE; |
66 virtual ResourceDispatcherHost* resource_dispatcher_host() OVERRIDE; | 66 virtual ResourceDispatcherHost* resource_dispatcher_host() OVERRIDE; |
67 virtual MetricsService* metrics_service() OVERRIDE; | 67 virtual MetricsService* metrics_service() OVERRIDE; |
68 virtual IOThread* io_thread() OVERRIDE; | 68 virtual IOThread* io_thread() OVERRIDE; |
| 69 virtual base::Thread* file_user_blocking_thread() OVERRIDE; |
69 virtual base::Thread* file_thread() OVERRIDE; | 70 virtual base::Thread* file_thread() OVERRIDE; |
70 virtual base::Thread* db_thread() OVERRIDE; | 71 virtual base::Thread* db_thread() OVERRIDE; |
71 virtual base::Thread* cache_thread() OVERRIDE; | 72 virtual base::Thread* cache_thread() OVERRIDE; |
72 virtual WatchDogThread* watchdog_thread() OVERRIDE; | 73 virtual WatchDogThread* watchdog_thread() OVERRIDE; |
73 #if defined(OS_CHROMEOS) | 74 #if defined(OS_CHROMEOS) |
74 virtual base::Thread* web_socket_proxy_thread() OVERRIDE; | 75 virtual base::Thread* web_socket_proxy_thread() OVERRIDE; |
75 #endif | 76 #endif |
76 virtual ProfileManager* profile_manager() OVERRIDE; | 77 virtual ProfileManager* profile_manager() OVERRIDE; |
77 virtual PrefService* local_state() OVERRIDE; | 78 virtual PrefService* local_state() OVERRIDE; |
78 virtual SidebarManager* sidebar_manager() OVERRIDE; | 79 virtual SidebarManager* sidebar_manager() OVERRIDE; |
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
289 #if !defined(OS_CHROMEOS) | 290 #if !defined(OS_CHROMEOS) |
290 scoped_ptr<ComponentUpdateService> component_updater_; | 291 scoped_ptr<ComponentUpdateService> component_updater_; |
291 | 292 |
292 scoped_refptr<CRLSetFetcher> crl_set_fetcher_; | 293 scoped_refptr<CRLSetFetcher> crl_set_fetcher_; |
293 #endif | 294 #endif |
294 | 295 |
295 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); | 296 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); |
296 }; | 297 }; |
297 | 298 |
298 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ | 299 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ |
OLD | NEW |