| 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_ |
| 11 #define CHROME_BROWSER_BROWSER_PROCESS_H_ | 11 #define CHROME_BROWSER_BROWSER_PROCESS_H_ |
| 12 | 12 |
| 13 #include <string> | 13 #include <string> |
| 14 | 14 |
| 15 #include "base/basictypes.h" | 15 #include "base/basictypes.h" |
| 16 #include "chrome/browser/browser_process_platform_part.h" |
| 16 #include "chrome/browser/ui/host_desktop.h" | 17 #include "chrome/browser/ui/host_desktop.h" |
| 17 | 18 |
| 18 class AutomationProviderList; | 19 class AutomationProviderList; |
| 19 class BackgroundModeManager; | 20 class BackgroundModeManager; |
| 20 class BookmarkPromptController; | 21 class BookmarkPromptController; |
| 21 class BrowserProcessPlatformPart; | |
| 22 class ChromeNetLog; | 22 class ChromeNetLog; |
| 23 class CRLSetFetcher; | 23 class CRLSetFetcher; |
| 24 class ComponentUpdateService; | 24 class ComponentUpdateService; |
| 25 class DownloadRequestLimiter; | 25 class DownloadRequestLimiter; |
| 26 class DownloadStatusUpdater; | 26 class DownloadStatusUpdater; |
| 27 class GLStringManager; | 27 class GLStringManager; |
| 28 class GpuModeManager; | 28 class GpuModeManager; |
| 29 class IconManager; | 29 class IconManager; |
| 30 class IntranetRedirectDetector; | 30 class IntranetRedirectDetector; |
| 31 class IOThread; | 31 class IOThread; |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 | 214 |
| 215 virtual bool created_local_state() const = 0; | 215 virtual bool created_local_state() const = 0; |
| 216 | 216 |
| 217 private: | 217 private: |
| 218 DISALLOW_COPY_AND_ASSIGN(BrowserProcess); | 218 DISALLOW_COPY_AND_ASSIGN(BrowserProcess); |
| 219 }; | 219 }; |
| 220 | 220 |
| 221 extern BrowserProcess* g_browser_process; | 221 extern BrowserProcess* g_browser_process; |
| 222 | 222 |
| 223 #endif // CHROME_BROWSER_BROWSER_PROCESS_H_ | 223 #endif // CHROME_BROWSER_BROWSER_PROCESS_H_ |
| OLD | NEW |