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

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

Issue 12212048: Linux/ChromeOS Chromium style checker cleanup, chrome/browser edition. (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 7 years, 10 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/tts_controller_unittest.cc
===================================================================
--- chrome/browser/speech/tts_controller_unittest.cc (revision 181040)
+++ chrome/browser/speech/tts_controller_unittest.cc (working copy)
@@ -17,21 +17,21 @@
public:
DummyTtsPlatformImpl() {}
virtual ~DummyTtsPlatformImpl() {}
- virtual bool PlatformImplAvailable() { return true; }
+ virtual bool PlatformImplAvailable() OVERRIDE { return true; }
virtual bool Speak(
int utterance_id,
const std::string& utterance,
const std::string& lang,
- const UtteranceContinuousParameters& params) {
+ const UtteranceContinuousParameters& params) OVERRIDE {
return true;
}
- virtual bool IsSpeaking() { return false; }
- virtual bool StopSpeaking() { return true; }
- virtual bool SendsEvent(TtsEventType event_type) { return false; }
- virtual std::string gender() { return std::string(); }
- virtual std::string error() { return std::string(); }
- virtual void clear_error() {}
- virtual void set_error(const std::string& error) {}
+ virtual bool IsSpeaking() OVERRIDE { return false; }
+ virtual bool StopSpeaking() OVERRIDE { return true; }
+ virtual bool SendsEvent(TtsEventType event_type) OVERRIDE { return false; }
+ virtual std::string gender() OVERRIDE { return std::string(); }
+ 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.

Powered by Google App Engine
This is Rietveld 408576698