summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/extension_system_factory.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/extensions/extension_system_factory.cc')
-rw-r--r--chrome/browser/extensions/extension_system_factory.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/extensions/extension_system_factory.cc b/chrome/browser/extensions/extension_system_factory.cc
index 0955cb5..437509a 100644
--- a/chrome/browser/extensions/extension_system_factory.cc
+++ b/chrome/browser/extensions/extension_system_factory.cc
@@ -51,7 +51,7 @@ ProfileKeyedService* ExtensionSystemSharedFactory::BuildServiceInstanceFor(
return new ExtensionSystemImpl::Shared(profile);
}
-bool ExtensionSystemSharedFactory::ServiceRedirectedInIncognito() {
+bool ExtensionSystemSharedFactory::ServiceRedirectedInIncognito() const {
return true;
}
@@ -83,11 +83,11 @@ ProfileKeyedService* ExtensionSystemFactory::BuildServiceInstanceFor(
return new ExtensionSystemImpl(profile);
}
-bool ExtensionSystemFactory::ServiceHasOwnInstanceInIncognito() {
+bool ExtensionSystemFactory::ServiceHasOwnInstanceInIncognito() const {
return true;
}
-bool ExtensionSystemFactory::ServiceIsCreatedWithProfile() {
+bool ExtensionSystemFactory::ServiceIsCreatedWithProfile() const {
return true;
}