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

Unified Diff: chrome/browser/speech/tts_controller_unittest.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_controller_impl.h ('k') | chrome/browser/speech/tts_linux.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/speech/tts_controller_unittest.cc
diff --git a/chrome/browser/speech/tts_controller_unittest.cc b/chrome/browser/speech/tts_controller_unittest.cc
index 088c51e8735394c959dce88d6dce222cced46ec1..7bd4155f668db31a1d297160dc4cc35df4bc60d6 100644
--- a/chrome/browser/speech/tts_controller_unittest.cc
+++ b/chrome/browser/speech/tts_controller_unittest.cc
@@ -17,23 +17,23 @@ class DummyTtsPlatformImpl : public TtsPlatformImpl {
public:
DummyTtsPlatformImpl() {}
virtual ~DummyTtsPlatformImpl() {}
- virtual bool PlatformImplAvailable() OVERRIDE { return true; }
+ virtual bool PlatformImplAvailable() override { return true; }
virtual bool Speak(
int utterance_id,
const std::string& utterance,
const std::string& lang,
const VoiceData& voice,
- const UtteranceContinuousParameters& params) OVERRIDE {
+ const UtteranceContinuousParameters& params) override {
return true;
}
- virtual bool IsSpeaking() OVERRIDE { return false; }
- virtual bool StopSpeaking() OVERRIDE { return true; }
- virtual void Pause() OVERRIDE {}
- virtual void Resume() OVERRIDE {}
- virtual void GetVoices(std::vector<VoiceData>* out_voices) OVERRIDE {}
- virtual std::string error() OVERRIDE { return std::string(); }
- virtual void clear_error() OVERRIDE {}
- virtual void set_error(const std::string& error) OVERRIDE {}
+ virtual bool IsSpeaking() override { return false; }
+ virtual bool StopSpeaking() override { return true; }
+ virtual void Pause() override {}
+ virtual void Resume() override {}
+ virtual void GetVoices(std::vector<VoiceData>* out_voices) override {}
+ virtual std::string error() override { return std::string(); }
+ virtual void clear_error() override {}
+ virtual void set_error(const std::string& error) override {}
};
// Subclass of TtsController with a public ctor and dtor.
« no previous file with comments | « chrome/browser/speech/tts_controller_impl.h ('k') | chrome/browser/speech/tts_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698