| 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 | 110 |
| 111 #if (defined(OS_WIN) || defined(OS_LINUX)) && !defined(OS_CHROMEOS) | 111 #if (defined(OS_WIN) || defined(OS_LINUX)) && !defined(OS_CHROMEOS) |
| 112 virtual void StartAutoupdateTimer() OVERRIDE; | 112 virtual void StartAutoupdateTimer() OVERRIDE; |
| 113 #endif | 113 #endif |
| 114 | 114 |
| 115 virtual ChromeNetLog* net_log() OVERRIDE; | 115 virtual ChromeNetLog* net_log() OVERRIDE; |
| 116 virtual prerender::PrerenderTracker* prerender_tracker() OVERRIDE; | 116 virtual prerender::PrerenderTracker* prerender_tracker() OVERRIDE; |
| 117 virtual MHTMLGenerationManager* mhtml_generation_manager() OVERRIDE; | 117 virtual MHTMLGenerationManager* mhtml_generation_manager() OVERRIDE; |
| 118 virtual GpuBlacklistUpdater* gpu_blacklist_updater() OVERRIDE; | 118 virtual GpuBlacklistUpdater* gpu_blacklist_updater() OVERRIDE; |
| 119 virtual ComponentUpdateService* component_updater() OVERRIDE; | 119 virtual ComponentUpdateService* component_updater() OVERRIDE; |
| 120 virtual CRLSetFetcher* crl_set_fetcher(); | 120 virtual CRLSetFetcher* crl_set_fetcher() OVERRIDE; |
| 121 | 121 |
| 122 private: | 122 private: |
| 123 void CreateResourceDispatcherHost(); | 123 void CreateResourceDispatcherHost(); |
| 124 void CreateMetricsService(); | 124 void CreateMetricsService(); |
| 125 | 125 |
| 126 void CreateIOThread(); | 126 void CreateIOThread(); |
| 127 static void CleanupOnIOThread(); | 127 static void CleanupOnIOThread(); |
| 128 | 128 |
| 129 void CreateFileThread(); | 129 void CreateFileThread(); |
| 130 void CreateDBThread(); | 130 void CreateDBThread(); |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 #if !defined(OS_CHROMEOS) | 303 #if !defined(OS_CHROMEOS) |
| 304 scoped_ptr<ComponentUpdateService> component_updater_; | 304 scoped_ptr<ComponentUpdateService> component_updater_; |
| 305 | 305 |
| 306 scoped_refptr<CRLSetFetcher> crl_set_fetcher_; | 306 scoped_refptr<CRLSetFetcher> crl_set_fetcher_; |
| 307 #endif | 307 #endif |
| 308 | 308 |
| 309 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); | 309 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); |
| 310 }; | 310 }; |
| 311 | 311 |
| 312 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ | 312 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ |
| OLD | NEW |