diff options
Diffstat (limited to 'chrome/browser/speech/tts_linux.cc')
-rw-r--r-- | chrome/browser/speech/tts_linux.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/chrome/browser/speech/tts_linux.cc b/chrome/browser/speech/tts_linux.cc index 2113d36..0a3d849 100644 --- a/chrome/browser/speech/tts_linux.cc +++ b/chrome/browser/speech/tts_linux.cc @@ -21,15 +21,15 @@ const char kNotSupportedError[] = 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. |