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

Unified Diff: chrome/browser/browser_process_impl.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 | « chrome/browser/browser_process.h ('k') | chrome/browser/browser_process_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/browser_process_impl.h
diff --git a/chrome/browser/browser_process_impl.h b/chrome/browser/browser_process_impl.h
index 6c5128ca6baf694472fc7ed69bc74972b18cb96e..9436c98d3cd7b99e0466544908a0fb6ffac2b55c 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_;
« no previous file with comments | « chrome/browser/browser_process.h ('k') | chrome/browser/browser_process_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698