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 #if defined(ENABLE_WEBRTC) |
| 44 class WebRtcLogUploader; |
| 45 #endif |
43 | 46 |
44 namespace chrome { | 47 namespace chrome { |
45 class MediaFileSystemRegistry; | 48 class MediaFileSystemRegistry; |
46 } | 49 } |
47 | 50 |
48 namespace chrome_variations { | 51 namespace chrome_variations { |
49 class VariationsService; | 52 class VariationsService; |
50 } | 53 } |
51 | 54 |
52 namespace extensions { | 55 namespace extensions { |
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
206 virtual CRLSetFetcher* crl_set_fetcher() = 0; | 209 virtual CRLSetFetcher* crl_set_fetcher() = 0; |
207 | 210 |
208 virtual PnaclComponentInstaller* pnacl_component_installer() = 0; | 211 virtual PnaclComponentInstaller* pnacl_component_installer() = 0; |
209 | 212 |
210 virtual BookmarkPromptController* bookmark_prompt_controller() = 0; | 213 virtual BookmarkPromptController* bookmark_prompt_controller() = 0; |
211 | 214 |
212 virtual chrome::MediaFileSystemRegistry* media_file_system_registry() = 0; | 215 virtual chrome::MediaFileSystemRegistry* media_file_system_registry() = 0; |
213 | 216 |
214 virtual bool created_local_state() const = 0; | 217 virtual bool created_local_state() const = 0; |
215 | 218 |
| 219 #if defined(ENABLE_WEBRTC) |
| 220 virtual WebRtcLogUploader* webrtc_log_uploader() = 0; |
| 221 #endif |
| 222 |
216 private: | 223 private: |
217 DISALLOW_COPY_AND_ASSIGN(BrowserProcess); | 224 DISALLOW_COPY_AND_ASSIGN(BrowserProcess); |
218 }; | 225 }; |
219 | 226 |
220 extern BrowserProcess* g_browser_process; | 227 extern BrowserProcess* g_browser_process; |
221 | 228 |
222 #endif // CHROME_BROWSER_BROWSER_PROCESS_H_ | 229 #endif // CHROME_BROWSER_BROWSER_PROCESS_H_ |
OLD | NEW |