summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/test_extension_system.cc
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 /chrome/browser/extensions/test_extension_system.cc
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 'chrome/browser/extensions/test_extension_system.cc')
-rw-r--r--chrome/browser/extensions/test_extension_system.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/chrome/browser/extensions/test_extension_system.cc b/chrome/browser/extensions/test_extension_system.cc
index 43577c0..d70ad57 100644
--- a/chrome/browser/extensions/test_extension_system.cc
+++ b/chrome/browser/extensions/test_extension_system.cc
@@ -183,8 +183,7 @@ const OneShotEvent& TestExtensionSystem::ready() const {
}
// static
-BrowserContextKeyedService* TestExtensionSystem::Build(
- content::BrowserContext* profile) {
+KeyedService* TestExtensionSystem::Build(content::BrowserContext* profile) {
return new TestExtensionSystem(static_cast<Profile*>(profile));
}