Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Side by Side Diff: chrome/browser/browser_process.h

Issue 2530053003: chrome: Cleanup class/struct forward declarations (Closed)
Patch Set: Rebase + address comment Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « chrome/browser/bookmarks/startup_task_runner_service_factory.h ('k') | chrome/browser/browser_process_platform_part_mac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698