diff options
Diffstat (limited to 'chrome/browser/speech/speech_input_extension_manager.cc')
-rw-r--r-- | chrome/browser/speech/speech_input_extension_manager.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/speech/speech_input_extension_manager.cc b/chrome/browser/speech/speech_input_extension_manager.cc index 8703c27..c088cde 100644 --- a/chrome/browser/speech/speech_input_extension_manager.cc +++ b/chrome/browser/speech/speech_input_extension_manager.cc @@ -97,9 +97,9 @@ class SpeechInputExtensionManager::Factory : public ProfileKeyedServiceFactory { // ProfileKeyedServiceFactory methods: virtual ProfileKeyedService* BuildServiceInstanceFor( Profile* profile) const OVERRIDE; - virtual bool ServiceRedirectedInIncognito() OVERRIDE { return false; } - virtual bool ServiceIsNULLWhileTesting() OVERRIDE { return true; } - virtual bool ServiceIsCreatedWithProfile() OVERRIDE { return true; } + virtual bool ServiceRedirectedInIncognito() const OVERRIDE { return false; } + virtual bool ServiceIsNULLWhileTesting() const OVERRIDE { return true; } + virtual bool ServiceIsCreatedWithProfile() const OVERRIDE { return true; } DISALLOW_COPY_AND_ASSIGN(Factory); }; |