| 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 PhysicalWebDataSource; | |
| 37 class PrefRegistrySimple; | 36 class PrefRegistrySimple; |
| 38 class PrefService; | 37 class PrefService; |
| 39 class Profile; | 38 class Profile; |
| 40 class ProfileManager; | 39 class ProfileManager; |
| 41 class StatusTray; | 40 class StatusTray; |
| 42 class WatchDogThread; | 41 class WatchDogThread; |
| 43 #if BUILDFLAG(ENABLE_WEBRTC) | 42 #if BUILDFLAG(ENABLE_WEBRTC) |
| 44 class WebRtcLogUploader; | 43 class WebRtcLogUploader; |
| 45 #endif | 44 #endif |
| 46 | 45 |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 } | 90 } |
| 92 | 91 |
| 93 namespace net_log { | 92 namespace net_log { |
| 94 class ChromeNetLog; | 93 class ChromeNetLog; |
| 95 } | 94 } |
| 96 | 95 |
| 97 namespace network_time { | 96 namespace network_time { |
| 98 class NetworkTimeTracker; | 97 class NetworkTimeTracker; |
| 99 } | 98 } |
| 100 | 99 |
| 100 namespace physical_web { |
| 101 class PhysicalWebDataSource; |
| 102 } |
| 103 |
| 101 namespace policy { | 104 namespace policy { |
| 102 class BrowserPolicyConnector; | 105 class BrowserPolicyConnector; |
| 103 class PolicyService; | 106 class PolicyService; |
| 104 } | 107 } |
| 105 | 108 |
| 106 namespace printing { | 109 namespace printing { |
| 107 class BackgroundPrintingManager; | 110 class BackgroundPrintingManager; |
| 108 class PrintJobManager; | 111 class PrintJobManager; |
| 109 class PrintPreviewDialogController; | 112 class PrintPreviewDialogController; |
| 110 } | 113 } |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 274 // Returns the tab manager. On non-supported platforms, this returns null. | 277 // Returns the tab manager. On non-supported platforms, this returns null. |
| 275 virtual memory::TabManager* GetTabManager() = 0; | 278 virtual memory::TabManager* GetTabManager() = 0; |
| 276 | 279 |
| 277 // Returns the default web client state of Chrome (i.e., was it the user's | 280 // Returns the default web client state of Chrome (i.e., was it the user's |
| 278 // default browser) at the time a previous check was made sometime between | 281 // default browser) at the time a previous check was made sometime between |
| 279 // process startup and now. | 282 // process startup and now. |
| 280 virtual shell_integration::DefaultWebClientState | 283 virtual shell_integration::DefaultWebClientState |
| 281 CachedDefaultWebClientState() = 0; | 284 CachedDefaultWebClientState() = 0; |
| 282 | 285 |
| 283 // Returns the Physical Web data source. | 286 // Returns the Physical Web data source. |
| 284 virtual PhysicalWebDataSource* GetPhysicalWebDataSource() = 0; | 287 virtual physical_web::PhysicalWebDataSource* GetPhysicalWebDataSource() = 0; |
| 285 | 288 |
| 286 private: | 289 private: |
| 287 DISALLOW_COPY_AND_ASSIGN(BrowserProcess); | 290 DISALLOW_COPY_AND_ASSIGN(BrowserProcess); |
| 288 }; | 291 }; |
| 289 | 292 |
| 290 extern BrowserProcess* g_browser_process; | 293 extern BrowserProcess* g_browser_process; |
| 291 | 294 |
| 292 #endif // CHROME_BROWSER_BROWSER_PROCESS_H_ | 295 #endif // CHROME_BROWSER_BROWSER_PROCESS_H_ |
| OLD | NEW |