summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/extension_system_factory.h
diff options
context:
space:
mode:
authorthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-09-06 00:37:52 +0000
committerthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-09-06 00:37:52 +0000
commitbb05cae18dede8470d74aaa36c0b3ca1736a3159 (patch)
treebb5c3cbd24733b5c310fbb5fe73de7a55c8ab9e5 /chrome/browser/extensions/extension_system_factory.h
parent5c187863e3b264fb954d37fe24e41cf5b4c29c5b (diff)
downloadchromium_src-bb05cae18dede8470d74aaa36c0b3ca1736a3159.zip
chromium_src-bb05cae18dede8470d74aaa36c0b3ca1736a3159.tar.gz
chromium_src-bb05cae18dede8470d74aaa36c0b3ca1736a3159.tar.bz2
Cleanup: Constify some ProfileKeyedBaseFactory methods and all overrides. Remove ProfileKeyedBaseFactory::ForceRegisterPrefsForTest()
Review URL: https://chromiumcodereview.appspot.com/10908088 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@155073 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/extensions/extension_system_factory.h')
-rw-r--r--chrome/browser/extensions/extension_system_factory.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/extensions/extension_system_factory.h b/chrome/browser/extensions/extension_system_factory.h
index 2471a25..f2f4617 100644
--- a/chrome/browser/extensions/extension_system_factory.h
+++ b/chrome/browser/extensions/extension_system_factory.h
@@ -32,7 +32,7 @@ class ExtensionSystemSharedFactory : public ProfileKeyedServiceFactory {
virtual ProfileKeyedService* BuildServiceInstanceFor(
Profile* profile) const OVERRIDE;
- virtual bool ServiceRedirectedInIncognito() OVERRIDE;
+ virtual bool ServiceRedirectedInIncognito() const OVERRIDE;
};
// ProfileKeyedServiceFactory for ExtensionSystem.
@@ -51,8 +51,8 @@ class ExtensionSystemFactory : public ProfileKeyedServiceFactory {
virtual ProfileKeyedService* BuildServiceInstanceFor(
Profile* profile) const OVERRIDE;
- virtual bool ServiceHasOwnInstanceInIncognito() OVERRIDE;
- virtual bool ServiceIsCreatedWithProfile() OVERRIDE;
+ virtual bool ServiceHasOwnInstanceInIncognito() const OVERRIDE;
+ virtual bool ServiceIsCreatedWithProfile() const OVERRIDE;
};
} // namespace extensions