summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/extension_toolbar_model.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 /chrome/browser/extensions/extension_toolbar_model.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 'chrome/browser/extensions/extension_toolbar_model.h')
-rw-r--r--chrome/browser/extensions/extension_toolbar_model.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/extensions/extension_toolbar_model.h b/chrome/browser/extensions/extension_toolbar_model.h
index f64bc83..5938efb 100644
--- a/chrome/browser/extensions/extension_toolbar_model.h
+++ b/chrome/browser/extensions/extension_toolbar_model.h
@@ -8,7 +8,7 @@
#include "base/compiler_specific.h"
#include "base/observer_list.h"
#include "base/prefs/pref_change_registrar.h"
-#include "components/browser_context_keyed_service/browser_context_keyed_service.h"
+#include "components/keyed_service/core/keyed_service.h"
#include "content/public/browser/notification_observer.h"
#include "content/public/browser/notification_registrar.h"
#include "extensions/browser/extension_prefs.h"
@@ -21,7 +21,7 @@ class Profile;
// Model for the browser actions toolbar.
class ExtensionToolbarModel : public content::NotificationObserver,
- public BrowserContextKeyedService {
+ public KeyedService {
public:
ExtensionToolbarModel(Profile* profile,
extensions::ExtensionPrefs* extension_prefs);