| 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 15 matching lines...) Expand all Loading... |
| 26 class DownloadRequestLimiter; | 26 class DownloadRequestLimiter; |
| 27 class DownloadStatusUpdater; | 27 class DownloadStatusUpdater; |
| 28 class GpuModeManager; | 28 class GpuModeManager; |
| 29 class GpuProfileCache; | 29 class GpuProfileCache; |
| 30 class IconManager; | 30 class IconManager; |
| 31 class IntranetRedirectDetector; | 31 class IntranetRedirectDetector; |
| 32 class IOThread; | 32 class IOThread; |
| 33 class MediaFileSystemRegistry; | 33 class MediaFileSystemRegistry; |
| 34 class NotificationPlatformBridge; | 34 class NotificationPlatformBridge; |
| 35 class NotificationUIManager; | 35 class NotificationUIManager; |
| 36 class PrefRegistrySimple; | |
| 37 class PrefService; | 36 class PrefService; |
| 38 class Profile; | |
| 39 class ProfileManager; | 37 class ProfileManager; |
| 40 class StatusTray; | 38 class StatusTray; |
| 41 class WatchDogThread; | 39 class WatchDogThread; |
| 42 #if BUILDFLAG(ENABLE_WEBRTC) | 40 #if BUILDFLAG(ENABLE_WEBRTC) |
| 43 class WebRtcLogUploader; | 41 class WebRtcLogUploader; |
| 44 #endif | 42 #endif |
| 45 | 43 |
| 46 namespace safe_browsing { | 44 namespace safe_browsing { |
| 47 class SafeBrowsingService; | 45 class SafeBrowsingService; |
| 48 } | 46 } |
| (...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 286 // Returns the Physical Web data source. | 284 // Returns the Physical Web data source. |
| 287 virtual physical_web::PhysicalWebDataSource* GetPhysicalWebDataSource() = 0; | 285 virtual physical_web::PhysicalWebDataSource* GetPhysicalWebDataSource() = 0; |
| 288 | 286 |
| 289 private: | 287 private: |
| 290 DISALLOW_COPY_AND_ASSIGN(BrowserProcess); | 288 DISALLOW_COPY_AND_ASSIGN(BrowserProcess); |
| 291 }; | 289 }; |
| 292 | 290 |
| 293 extern BrowserProcess* g_browser_process; | 291 extern BrowserProcess* g_browser_process; |
| 294 | 292 |
| 295 #endif // CHROME_BROWSER_BROWSER_PROCESS_H_ | 293 #endif // CHROME_BROWSER_BROWSER_PROCESS_H_ |
| OLD | NEW |