| 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; | |
| 33 class NotificationUIManager; | 32 class NotificationUIManager; |
| 34 class PrefRegistrySimple; | 33 class PrefRegistrySimple; |
| 35 class PrefService; | 34 class PrefService; |
| 36 class Profile; | 35 class Profile; |
| 37 class ProfileManager; | 36 class ProfileManager; |
| 38 class SafeBrowsingService; | 37 class SafeBrowsingService; |
| 39 class StatusTray; | 38 class StatusTray; |
| 40 class WatchDogThread; | 39 class WatchDogThread; |
| 41 #if defined(ENABLE_WEBRTC) | 40 #if defined(ENABLE_WEBRTC) |
| 42 class WebRtcLogUploader; | 41 class WebRtcLogUploader; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 56 } | 55 } |
| 57 | 56 |
| 58 namespace message_center { | 57 namespace message_center { |
| 59 class MessageCenter; | 58 class MessageCenter; |
| 60 } | 59 } |
| 61 | 60 |
| 62 namespace net { | 61 namespace net { |
| 63 class URLRequestContextGetter; | 62 class URLRequestContextGetter; |
| 64 } | 63 } |
| 65 | 64 |
| 65 namespace network_time { |
| 66 class NetworkTimeTracker; |
| 67 } |
| 68 |
| 66 namespace policy { | 69 namespace policy { |
| 67 class BrowserPolicyConnector; | 70 class BrowserPolicyConnector; |
| 68 class PolicyService; | 71 class PolicyService; |
| 69 } | 72 } |
| 70 | 73 |
| 71 namespace prerender { | 74 namespace prerender { |
| 72 class PrerenderTracker; | 75 class PrerenderTracker; |
| 73 } | 76 } |
| 74 | 77 |
| 75 namespace printing { | 78 namespace printing { |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 213 pnacl_component_installer() = 0; | 216 pnacl_component_installer() = 0; |
| 214 | 217 |
| 215 virtual MediaFileSystemRegistry* media_file_system_registry() = 0; | 218 virtual MediaFileSystemRegistry* media_file_system_registry() = 0; |
| 216 | 219 |
| 217 virtual bool created_local_state() const = 0; | 220 virtual bool created_local_state() const = 0; |
| 218 | 221 |
| 219 #if defined(ENABLE_WEBRTC) | 222 #if defined(ENABLE_WEBRTC) |
| 220 virtual WebRtcLogUploader* webrtc_log_uploader() = 0; | 223 virtual WebRtcLogUploader* webrtc_log_uploader() = 0; |
| 221 #endif | 224 #endif |
| 222 | 225 |
| 223 virtual NetworkTimeTracker* network_time_tracker() = 0; | 226 virtual network_time::NetworkTimeTracker* network_time_tracker() = 0; |
| 224 | 227 |
| 225 private: | 228 private: |
| 226 DISALLOW_COPY_AND_ASSIGN(BrowserProcess); | 229 DISALLOW_COPY_AND_ASSIGN(BrowserProcess); |
| 227 }; | 230 }; |
| 228 | 231 |
| 229 extern BrowserProcess* g_browser_process; | 232 extern BrowserProcess* g_browser_process; |
| 230 | 233 |
| 231 #endif // CHROME_BROWSER_BROWSER_PROCESS_H_ | 234 #endif // CHROME_BROWSER_BROWSER_PROCESS_H_ |
| OLD | NEW |