diff options
author | sorin@chromium.org <sorin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-17 20:22:32 +0000 |
---|---|---|
committer | sorin@chromium.org <sorin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-17 20:22:32 +0000 |
commit | 055981fafda7915d3b32d0121e4a256faaef0306 (patch) | |
tree | 1a334d6ff7284c36060027af942343db5de4929d /chrome/browser/browser_process_impl.h | |
parent | 51ce9b5eff92a2972f7dbc2845da1f76cca6546e (diff) | |
download | chromium_src-055981fafda7915d3b32d0121e4a256faaef0306.zip chromium_src-055981fafda7915d3b32d0121e4a256faaef0306.tar.gz chromium_src-055981fafda7915d3b32d0121e4a256faaef0306.tar.bz2 |
Move component updater artifacts into component_updater namespace.
sky@ please look at the files in chrome/browser for owner approval.
Long term, the idea is to unify several updaters in Chrome, so having a specific namespace could help avoiding name conflicts.
Short term, the change reduces some naming verbosity in the implementation but makes the call site names longer, so it is a wash.
Review URL: https://codereview.chromium.org/138553004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245596 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/browser_process_impl.h')
-rw-r--r-- | chrome/browser/browser_process_impl.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/chrome/browser/browser_process_impl.h b/chrome/browser/browser_process_impl.h index 6c5128c..9436c98 100644 --- a/chrome/browser/browser_process_impl.h +++ b/chrome/browser/browser_process_impl.h @@ -123,9 +123,11 @@ class BrowserProcessImpl : public BrowserProcess, virtual ChromeNetLog* net_log() OVERRIDE; virtual prerender::PrerenderTracker* prerender_tracker() OVERRIDE; - virtual ComponentUpdateService* component_updater() OVERRIDE; + virtual component_updater::ComponentUpdateService* + component_updater() OVERRIDE; virtual CRLSetFetcher* crl_set_fetcher() OVERRIDE; - virtual PnaclComponentInstaller* pnacl_component_installer() OVERRIDE; + virtual component_updater::PnaclComponentInstaller* + pnacl_component_installer() OVERRIDE; virtual BookmarkPromptController* bookmark_prompt_controller() OVERRIDE; virtual StorageMonitor* storage_monitor() OVERRIDE; void set_storage_monitor_for_test(scoped_ptr<StorageMonitor> monitor); @@ -285,9 +287,10 @@ class BrowserProcessImpl : public BrowserProcess, // component updater is normally not used under ChromeOS due // to concerns over integrity of data shared between profiles, // but some users of component updater only install per-user. - scoped_ptr<ComponentUpdateService> component_updater_; + scoped_ptr<component_updater::ComponentUpdateService> component_updater_; scoped_refptr<CRLSetFetcher> crl_set_fetcher_; - scoped_ptr<PnaclComponentInstaller> pnacl_component_installer_; + scoped_ptr<component_updater::PnaclComponentInstaller> + pnacl_component_installer_; #if defined(ENABLE_PLUGIN_INSTALLATION) scoped_refptr<PluginsResourceService> plugins_resource_service_; |