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

Unified Diff: chrome/renderer/tts_dispatcher.h

Issue 630603003: Replacing the OVERRIDE with override in chrome/renderer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased the patch 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/renderer/translate/translate_script_browsertest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/tts_dispatcher.h
diff --git a/chrome/renderer/tts_dispatcher.h b/chrome/renderer/tts_dispatcher.h
index c46327591c76a767dddec231e4245f7ada20d98b..9175e6c73b38a0d4c94e621edd881c96d8b2f1c5 100644
--- a/chrome/renderer/tts_dispatcher.h
+++ b/chrome/renderer/tts_dispatcher.h
@@ -37,15 +37,15 @@ class TtsDispatcher
virtual ~TtsDispatcher();
// RenderProcessObserver override.
- virtual bool OnControlMessageReceived(const IPC::Message& message) OVERRIDE;
+ virtual bool OnControlMessageReceived(const IPC::Message& message) override;
// blink::WebSpeechSynthesizer implementation.
- virtual void updateVoiceList() OVERRIDE;
+ virtual void updateVoiceList() override;
virtual void speak(const blink::WebSpeechSynthesisUtterance& utterance)
- OVERRIDE;
- virtual void pause() OVERRIDE;
- virtual void resume() OVERRIDE;
- virtual void cancel() OVERRIDE;
+ override;
+ virtual void pause() override;
+ virtual void resume() override;
+ virtual void cancel() override;
blink::WebSpeechSynthesisUtterance FindUtterance(int utterance_id);
« no previous file with comments | « chrome/renderer/translate/translate_script_browsertest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698