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

Unified Diff: chrome/browser/browser_process.h

Issue 138553004: Move component updater artifacts into component_updater namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/browser_process_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/browser_process.h
diff --git a/chrome/browser/browser_process.h b/chrome/browser/browser_process.h
index cbad4bccc2d90e2efb67b713b8398c1acbd2359f..43c296aadb5c7e61eb9942d5313795f039037d34 100644
--- a/chrome/browser/browser_process.h
+++ b/chrome/browser/browser_process.h
@@ -22,7 +22,6 @@ class BackgroundModeManager;
class BookmarkPromptController;
class ChromeNetLog;
class CRLSetFetcher;
-class ComponentUpdateService;
class DownloadRequestLimiter;
class DownloadStatusUpdater;
class GLStringManager;
@@ -33,7 +32,6 @@ class IOThread;
class MediaFileSystemRegistry;
class MetricsService;
class NotificationUIManager;
-class PnaclComponentInstaller;
class PrefRegistrySimple;
class PrefService;
class Profile;
@@ -51,6 +49,11 @@ namespace chrome_variations {
class VariationsService;
}
+namespace component_updater {
+class ComponentUpdateService;
+class PnaclComponentInstaller;
+}
+
namespace extensions {
class EventRouterForwarder;
}
@@ -205,11 +208,12 @@ class BrowserProcess {
virtual prerender::PrerenderTracker* prerender_tracker() = 0;
- virtual ComponentUpdateService* component_updater() = 0;
+ virtual component_updater::ComponentUpdateService* component_updater() = 0;
virtual CRLSetFetcher* crl_set_fetcher() = 0;
- virtual PnaclComponentInstaller* pnacl_component_installer() = 0;
+ virtual component_updater::PnaclComponentInstaller*
+ pnacl_component_installer() = 0;
virtual BookmarkPromptController* bookmark_prompt_controller() = 0;
« no previous file with comments | « no previous file | chrome/browser/browser_process_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698