| Index: chrome/browser/speech/extension_api/tts_engine_extension_observer.cc
 | 
| diff --git a/chrome/browser/speech/extension_api/tts_engine_extension_observer.cc b/chrome/browser/speech/extension_api/tts_engine_extension_observer.cc
 | 
| index 680d68e8838818eb5585fb852373c9857b108966..3ec1ef241b509c1e0ee1ecbd8ed4ffa9a7a59651 100644
 | 
| --- a/chrome/browser/speech/extension_api/tts_engine_extension_observer.cc
 | 
| +++ b/chrome/browser/speech/extension_api/tts_engine_extension_observer.cc
 | 
| @@ -44,14 +44,14 @@ class TtsEngineExtensionObserverFactory
 | 
|    virtual ~TtsEngineExtensionObserverFactory() {}
 | 
|  
 | 
|    virtual content::BrowserContext* GetBrowserContextToUse(
 | 
| -      content::BrowserContext* context) const OVERRIDE {
 | 
| +      content::BrowserContext* context) const override {
 | 
|      // If given an incognito profile (including the Chrome OS login
 | 
|      // profile), share the service with the original profile.
 | 
|      return chrome::GetBrowserContextRedirectedInIncognito(context);
 | 
|    }
 | 
|  
 | 
|    virtual KeyedService* BuildServiceInstanceFor(
 | 
| -      content::BrowserContext* profile) const OVERRIDE {
 | 
| +      content::BrowserContext* profile) const override {
 | 
|      return new TtsEngineExtensionObserver(static_cast<Profile*>(profile));
 | 
|    }
 | 
|  };
 | 
| 
 |