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

Unified Diff: chrome/browser/speech/tts_chromeos.cc

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_android.h ('k') | chrome/browser/speech/tts_controller_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/speech/tts_chromeos.cc
diff --git a/chrome/browser/speech/tts_chromeos.cc b/chrome/browser/speech/tts_chromeos.cc
index 67e4f90a8a1fc35c54d1826ce9c59aa0f035fa7d..621d44f813f53a094c00f099b77ae14def74c1dd 100644
--- a/chrome/browser/speech/tts_chromeos.cc
+++ b/chrome/browser/speech/tts_chromeos.cc
@@ -12,12 +12,12 @@
class TtsPlatformImplChromeOs : public TtsPlatformImpl {
public:
// TtsPlatformImpl overrides:
- virtual bool PlatformImplAvailable() OVERRIDE {
+ virtual bool PlatformImplAvailable() override {
return false;
}
virtual bool LoadBuiltInTtsExtension(
- content::BrowserContext* browser_context) OVERRIDE {
+ content::BrowserContext* browser_context) override {
TtsEngineDelegate* tts_engine_delegate =
TtsController::GetInstance()->GetTtsEngineDelegate();
if (tts_engine_delegate)
@@ -30,23 +30,23 @@ class TtsPlatformImplChromeOs : public TtsPlatformImpl {
const std::string& utterance,
const std::string& lang,
const VoiceData& voice,
- const UtteranceContinuousParameters& params) OVERRIDE {
+ const UtteranceContinuousParameters& params) override {
return false;
}
- virtual bool StopSpeaking() OVERRIDE {
+ virtual bool StopSpeaking() override {
return false;
}
- virtual void Pause() OVERRIDE {}
+ virtual void Pause() override {}
- virtual void Resume() OVERRIDE {}
+ virtual void Resume() override {}
- virtual bool IsSpeaking() OVERRIDE {
+ virtual bool IsSpeaking() override {
return false;
}
- virtual void GetVoices(std::vector<VoiceData>* out_voices) OVERRIDE {
+ virtual void GetVoices(std::vector<VoiceData>* out_voices) override {
}
// Get the single instance of this class.
« no previous file with comments | « chrome/browser/speech/tts_android.h ('k') | chrome/browser/speech/tts_controller_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698