| 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 22 matching lines...) Expand all Loading... |
| 33 class NotificationUIManager; | 33 class NotificationUIManager; |
| 34 class PnaclComponentInstaller; | 34 class PnaclComponentInstaller; |
| 35 class PrefRegistrySimple; | 35 class PrefRegistrySimple; |
| 36 class PrefService; | 36 class PrefService; |
| 37 class Profile; | 37 class Profile; |
| 38 class ProfileManager; | 38 class ProfileManager; |
| 39 class RenderWidgetSnapshotTaker; | 39 class RenderWidgetSnapshotTaker; |
| 40 class SafeBrowsingService; | 40 class SafeBrowsingService; |
| 41 class StatusTray; | 41 class StatusTray; |
| 42 class WatchDogThread; | 42 class WatchDogThread; |
| 43 class WebRtcLogUploadManager; |
| 43 | 44 |
| 44 namespace chrome { | 45 namespace chrome { |
| 45 class MediaFileSystemRegistry; | 46 class MediaFileSystemRegistry; |
| 46 } | 47 } |
| 47 | 48 |
| 48 #if defined(OS_CHROMEOS) | 49 #if defined(OS_CHROMEOS) |
| 49 namespace chromeos { | 50 namespace chromeos { |
| 50 class OomPriorityManager; | 51 class OomPriorityManager; |
| 51 } | 52 } |
| 52 #endif // defined(OS_CHROMEOS) | 53 #endif // defined(OS_CHROMEOS) |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 | 224 |
| 224 virtual BookmarkPromptController* bookmark_prompt_controller() = 0; | 225 virtual BookmarkPromptController* bookmark_prompt_controller() = 0; |
| 225 | 226 |
| 226 virtual chrome::MediaFileSystemRegistry* media_file_system_registry() = 0; | 227 virtual chrome::MediaFileSystemRegistry* media_file_system_registry() = 0; |
| 227 | 228 |
| 228 virtual void PlatformSpecificCommandLineProcessing( | 229 virtual void PlatformSpecificCommandLineProcessing( |
| 229 const CommandLine& command_line) = 0; | 230 const CommandLine& command_line) = 0; |
| 230 | 231 |
| 231 virtual bool created_local_state() const = 0; | 232 virtual bool created_local_state() const = 0; |
| 232 | 233 |
| 234 virtual WebRtcLogUploadManager* webrtc_log_upload_manager() = 0; |
| 235 |
| 233 private: | 236 private: |
| 234 DISALLOW_COPY_AND_ASSIGN(BrowserProcess); | 237 DISALLOW_COPY_AND_ASSIGN(BrowserProcess); |
| 235 }; | 238 }; |
| 236 | 239 |
| 237 extern BrowserProcess* g_browser_process; | 240 extern BrowserProcess* g_browser_process; |
| 238 | 241 |
| 239 #endif // CHROME_BROWSER_BROWSER_PROCESS_H_ | 242 #endif // CHROME_BROWSER_BROWSER_PROCESS_H_ |
| OLD | NEW |