Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3012)

Unified Diff: chrome/browser/speech/extension_api/tts_engine_extension_api.h

Issue 629603002: replace OVERRIDE and FINAL with override and final in chrome/browser/[r-z]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/speech/extension_api/tts_engine_extension_api.h
diff --git a/chrome/browser/speech/extension_api/tts_engine_extension_api.h b/chrome/browser/speech/extension_api/tts_engine_extension_api.h
index b7f00cf35c8b6c91269769492ac4810e128e6151..f363384d3e9519fda55861134cfa6ee78859da19 100644
--- a/chrome/browser/speech/extension_api/tts_engine_extension_api.h
+++ b/chrome/browser/speech/extension_api/tts_engine_extension_api.h
@@ -39,20 +39,20 @@ class TtsExtensionEngine : public TtsEngineDelegate {
// Overridden from TtsEngineDelegate:
virtual void GetVoices(content::BrowserContext* browser_context,
- std::vector<VoiceData>* out_voices) OVERRIDE;
- virtual void Speak(Utterance* utterance, const VoiceData& voice) OVERRIDE;
- virtual void Stop(Utterance* utterance) OVERRIDE;
- virtual void Pause(Utterance* utterance) OVERRIDE;
- virtual void Resume(Utterance* utterance) OVERRIDE;
+ std::vector<VoiceData>* out_voices) override;
+ virtual void Speak(Utterance* utterance, const VoiceData& voice) override;
+ virtual void Stop(Utterance* utterance) override;
+ virtual void Pause(Utterance* utterance) override;
+ virtual void Resume(Utterance* utterance) override;
virtual bool LoadBuiltInTtsExtension(
- content::BrowserContext* browser_context) OVERRIDE;
+ content::BrowserContext* browser_context) override;
};
// Hidden/internal extension function used to allow TTS engine extensions
// to send events back to the client that's calling tts.speak().
class ExtensionTtsEngineSendTtsEventFunction : public SyncExtensionFunction {
private:
virtual ~ExtensionTtsEngineSendTtsEventFunction() {}
- virtual bool RunSync() OVERRIDE;
+ virtual bool RunSync() override;
DECLARE_EXTENSION_FUNCTION("ttsEngine.sendTtsEvent", TTSENGINE_SENDTTSEVENT)
};

Powered by Google App Engine
This is Rietveld 408576698