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

Unified Diff: chrome/browser/speech/tts_mac.mm

Issue 12279015: Mac Chromium style checker cleanup (Closed) Base URL: svn://svn.chromium.org/chrome/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_mac.mm
diff --git a/chrome/browser/speech/tts_mac.mm b/chrome/browser/speech/tts_mac.mm
index b5683a10b16c04861b286b71d929fee91cd7f771..44f5ed3419d5c258fd1e449184c4f5a513f82e24 100644
--- a/chrome/browser/speech/tts_mac.mm
+++ b/chrome/browser/speech/tts_mac.mm
@@ -27,7 +27,7 @@ class TtsPlatformImplMac;
class TtsPlatformImplMac : public TtsPlatformImpl {
public:
- virtual bool PlatformImplAvailable() {
+ virtual bool PlatformImplAvailable() OVERRIDE {
return true;
}
@@ -35,13 +35,13 @@ class TtsPlatformImplMac : public TtsPlatformImpl {
int utterance_id,
const std::string& utterance,
const std::string& lang,
- const UtteranceContinuousParameters& params);
+ const UtteranceContinuousParameters& params) OVERRIDE;
- virtual bool StopSpeaking();
+ virtual bool StopSpeaking() OVERRIDE;
- virtual bool IsSpeaking();
+ virtual bool IsSpeaking() OVERRIDE;
- virtual bool SendsEvent(TtsEventType event_type);
+ virtual bool SendsEvent(TtsEventType event_type) OVERRIDE;
// Called by ChromeTtsDelegate when we get a callback from the
// native speech engine.

Powered by Google App Engine
This is Rietveld 408576698