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

Unified Diff: chrome/browser/speech/tts_controller_impl.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
« no previous file with comments | « chrome/browser/speech/tts_chromeos.cc ('k') | chrome/browser/speech/tts_controller_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/speech/tts_controller_impl.h
diff --git a/chrome/browser/speech/tts_controller_impl.h b/chrome/browser/speech/tts_controller_impl.h
index ae3ad6c7f4020097821f939c09f71d94d086e148..267fbf3d7d2f12b0e62d0d82f20012e4973943d6 100644
--- a/chrome/browser/speech/tts_controller_impl.h
+++ b/chrome/browser/speech/tts_controller_impl.h
@@ -29,26 +29,26 @@ class TtsControllerImpl : public TtsController {
static TtsControllerImpl* GetInstance();
// TtsController methods
- virtual bool IsSpeaking() OVERRIDE;
- virtual void SpeakOrEnqueue(Utterance* utterance) OVERRIDE;
- virtual void Stop() OVERRIDE;
- virtual void Pause() OVERRIDE;
- virtual void Resume() OVERRIDE;
+ virtual bool IsSpeaking() override;
+ virtual void SpeakOrEnqueue(Utterance* utterance) override;
+ virtual void Stop() override;
+ virtual void Pause() override;
+ virtual void Resume() override;
virtual void OnTtsEvent(int utterance_id,
TtsEventType event_type,
int char_index,
- const std::string& error_message) OVERRIDE;
+ const std::string& error_message) override;
virtual void GetVoices(content::BrowserContext* browser_context,
- std::vector<VoiceData>* out_voices) OVERRIDE;
- virtual void VoicesChanged() OVERRIDE;
+ std::vector<VoiceData>* out_voices) override;
+ virtual void VoicesChanged() override;
virtual void AddVoicesChangedDelegate(
- VoicesChangedDelegate* delegate) OVERRIDE;
+ VoicesChangedDelegate* delegate) override;
virtual void RemoveVoicesChangedDelegate(
- VoicesChangedDelegate* delegate) OVERRIDE;
- virtual void SetTtsEngineDelegate(TtsEngineDelegate* delegate) OVERRIDE;
- virtual TtsEngineDelegate* GetTtsEngineDelegate() OVERRIDE;
- virtual void SetPlatformImpl(TtsPlatformImpl* platform_impl) OVERRIDE;
- virtual int QueueSize() OVERRIDE;
+ VoicesChangedDelegate* delegate) override;
+ virtual void SetTtsEngineDelegate(TtsEngineDelegate* delegate) override;
+ virtual TtsEngineDelegate* GetTtsEngineDelegate() override;
+ virtual void SetPlatformImpl(TtsPlatformImpl* platform_impl) override;
+ virtual int QueueSize() override;
protected:
TtsControllerImpl();
« no previous file with comments | « chrome/browser/speech/tts_chromeos.cc ('k') | chrome/browser/speech/tts_controller_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698