| 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 // This interface is for managing the global services of the application. Each | 5 // This interface is for managing the global services of the application. Each |
| 6 // service is lazily created when requested the first time. The service getters | 6 // service is lazily created when requested the first time. The service getters |
| 7 // will return NULL if the service is not available, so callers must check for | 7 // will return NULL if the service is not available, so callers must check for |
| 8 // this condition. | 8 // this condition. |
| 9 | 9 |
| 10 #ifndef CHROME_BROWSER_BROWSER_PROCESS_H_ | 10 #ifndef CHROME_BROWSER_BROWSER_PROCESS_H_ |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 class CRLSetFetcher; | 22 class CRLSetFetcher; |
| 23 class DownloadRequestLimiter; | 23 class DownloadRequestLimiter; |
| 24 class DownloadStatusUpdater; | 24 class DownloadStatusUpdater; |
| 25 class GLStringManager; | 25 class GLStringManager; |
| 26 class GpuModeManager; | 26 class GpuModeManager; |
| 27 class IconManager; | 27 class IconManager; |
| 28 class IntranetRedirectDetector; | 28 class IntranetRedirectDetector; |
| 29 class IOThread; | 29 class IOThread; |
| 30 class MediaFileSystemRegistry; | 30 class MediaFileSystemRegistry; |
| 31 class MetricsService; | 31 class MetricsService; |
| 32 class NetworkTimeTracker; |
| 32 class NotificationUIManager; | 33 class NotificationUIManager; |
| 33 class PrefRegistrySimple; | 34 class PrefRegistrySimple; |
| 34 class PrefService; | 35 class PrefService; |
| 35 class Profile; | 36 class Profile; |
| 36 class ProfileManager; | 37 class ProfileManager; |
| 37 class SafeBrowsingService; | 38 class SafeBrowsingService; |
| 38 class StatusTray; | 39 class StatusTray; |
| 39 class WatchDogThread; | 40 class WatchDogThread; |
| 40 #if defined(ENABLE_WEBRTC) | 41 #if defined(ENABLE_WEBRTC) |
| 41 class WebRtcLogUploader; | 42 class WebRtcLogUploader; |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 pnacl_component_installer() = 0; | 213 pnacl_component_installer() = 0; |
| 213 | 214 |
| 214 virtual MediaFileSystemRegistry* media_file_system_registry() = 0; | 215 virtual MediaFileSystemRegistry* media_file_system_registry() = 0; |
| 215 | 216 |
| 216 virtual bool created_local_state() const = 0; | 217 virtual bool created_local_state() const = 0; |
| 217 | 218 |
| 218 #if defined(ENABLE_WEBRTC) | 219 #if defined(ENABLE_WEBRTC) |
| 219 virtual WebRtcLogUploader* webrtc_log_uploader() = 0; | 220 virtual WebRtcLogUploader* webrtc_log_uploader() = 0; |
| 220 #endif | 221 #endif |
| 221 | 222 |
| 223 virtual NetworkTimeTracker* network_time_tracker() = 0; |
| 224 |
| 222 private: | 225 private: |
| 223 DISALLOW_COPY_AND_ASSIGN(BrowserProcess); | 226 DISALLOW_COPY_AND_ASSIGN(BrowserProcess); |
| 224 }; | 227 }; |
| 225 | 228 |
| 226 extern BrowserProcess* g_browser_process; | 229 extern BrowserProcess* g_browser_process; |
| 227 | 230 |
| 228 #endif // CHROME_BROWSER_BROWSER_PROCESS_H_ | 231 #endif // CHROME_BROWSER_BROWSER_PROCESS_H_ |
| OLD | NEW |