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

Unified Diff: chrome/browser/speech/tts_linux.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_linux.cc
===================================================================
--- chrome/browser/speech/tts_linux.cc (revision 181040)
+++ chrome/browser/speech/tts_linux.cc (working copy)
@@ -21,15 +21,15 @@
class TtsPlatformImplLinux : public TtsPlatformImpl {
public:
- virtual bool PlatformImplAvailable();
+ virtual bool PlatformImplAvailable() OVERRIDE;
virtual bool Speak(
int utterance_id,
const std::string& utterance,
const std::string& lang,
- const UtteranceContinuousParameters& params);
- virtual bool StopSpeaking();
- virtual bool IsSpeaking();
- virtual bool SendsEvent(TtsEventType event_type);
+ const UtteranceContinuousParameters& params) OVERRIDE;
+ virtual bool StopSpeaking() OVERRIDE;
+ virtual bool IsSpeaking() OVERRIDE;
+ virtual bool SendsEvent(TtsEventType event_type) OVERRIDE;
void OnSpeechEvent(SPDNotificationType type);
// Get the single instance of this class.

Powered by Google App Engine
This is Rietveld 408576698