summaryrefslogtreecommitdiffstats
path: root/extensions/browser/process_map_factory.h
diff options
context:
space:
mode:
authorblundell@chromium.org <blundell@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-13 17:05:30 +0000
committerblundell@chromium.org <blundell@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-13 17:05:30 +0000
commitb33f0b119377a0e842b427457e4991600a127116 (patch)
tree2634e2ccfaa213dd75c6787e18e9cdf4aeda9e06 /extensions/browser/process_map_factory.h
parent70d2a0b7baa55ad80c498dca204edc055ccb0adb (diff)
downloadchromium_src-b33f0b119377a0e842b427457e4991600a127116.zip
chromium_src-b33f0b119377a0e842b427457e4991600a127116.tar.gz
chromium_src-b33f0b119377a0e842b427457e4991600a127116.tar.bz2
Move extensions-related files to using //components/keyed_service.
This CL removes the usage of //components/browser_context_keyed_service from: - //chrome/browser/extensions - //extensions It was constructed using the following: - move_source_file.py --already_moved - mffr.py - git cl format BUG=351704 TBR=yoz Review URL: https://codereview.chromium.org/197413002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@256853 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'extensions/browser/process_map_factory.h')
-rw-r--r--extensions/browser/process_map_factory.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/extensions/browser/process_map_factory.h b/extensions/browser/process_map_factory.h
index 0a62dc7..4d3626f 100644
--- a/extensions/browser/process_map_factory.h
+++ b/extensions/browser/process_map_factory.h
@@ -7,7 +7,7 @@
#include "base/compiler_specific.h"
#include "base/memory/singleton.h"
-#include "components/browser_context_keyed_service/browser_context_keyed_service_factory.h"
+#include "components/keyed_service/content/browser_context_keyed_service_factory.h"
namespace extensions {
@@ -28,7 +28,7 @@ class ProcessMapFactory : public BrowserContextKeyedServiceFactory {
virtual ~ProcessMapFactory();
// BrowserContextKeyedServiceFactory implementation:
- virtual BrowserContextKeyedService* BuildServiceInstanceFor(
+ virtual KeyedService* BuildServiceInstanceFor(
content::BrowserContext* context) const OVERRIDE;
virtual content::BrowserContext* GetBrowserContextToUse(
content::BrowserContext* context) const OVERRIDE;