summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/api/commands/command_service_factory.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/extensions/api/commands/command_service_factory.cc')
-rw-r--r--chrome/browser/extensions/api/commands/command_service_factory.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/extensions/api/commands/command_service_factory.cc b/chrome/browser/extensions/api/commands/command_service_factory.cc
index 91651d9..8f267b2 100644
--- a/chrome/browser/extensions/api/commands/command_service_factory.cc
+++ b/chrome/browser/extensions/api/commands/command_service_factory.cc
@@ -22,7 +22,7 @@ CommandServiceFactory* CommandServiceFactory::GetInstance() {
return Singleton<CommandServiceFactory>::get();
}
-bool CommandServiceFactory::ServiceIsCreatedWithProfile() {
+bool CommandServiceFactory::ServiceIsCreatedWithProfile() const {
return true;
}
@@ -40,7 +40,7 @@ ProfileKeyedService* CommandServiceFactory::BuildServiceInstanceFor(
return new CommandService(profile);
}
-bool CommandServiceFactory::ServiceRedirectedInIncognito() {
+bool CommandServiceFactory::ServiceRedirectedInIncognito() const {
return true;
}