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

Unified Diff: content/browser/speech/speech_recognizer.h

Issue 8587009: Add OVERRIDE to content/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 9 years, 1 month 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 | « content/browser/speech/speech_input_dispatcher_host.h ('k') | content/browser/ssl/ssl_cert_error_handler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/speech/speech_recognizer.h
diff --git a/content/browser/speech/speech_recognizer.h b/content/browser/speech/speech_recognizer.h
index b62c558f575120554250e6d199f6ec3fcfa10eae..c86da1cce8b41dff091c2a719fb8d156d54222f9 100644
--- a/content/browser/speech/speech_recognizer.h
+++ b/content/browser/speech/speech_recognizer.h
@@ -105,15 +105,16 @@ class CONTENT_EXPORT SpeechRecognizer
void CancelRecognition();
// AudioInputController::EventHandler methods.
- virtual void OnCreated(media::AudioInputController* controller) { }
- virtual void OnRecording(media::AudioInputController* controller) { }
- virtual void OnError(media::AudioInputController* controller, int error_code);
+ virtual void OnCreated(media::AudioInputController* controller) OVERRIDE { }
+ virtual void OnRecording(media::AudioInputController* controller) OVERRIDE { }
+ virtual void OnError(media::AudioInputController* controller,
+ int error_code) OVERRIDE;
virtual void OnData(media::AudioInputController* controller,
const uint8* data,
- uint32 size);
+ uint32 size) OVERRIDE;
// SpeechRecognitionRequest::Delegate methods.
- virtual void SetRecognitionResult(const SpeechInputResult& result);
+ virtual void SetRecognitionResult(const SpeechInputResult& result) OVERRIDE;
static const int kAudioSampleRate;
static const int kAudioPacketIntervalMs; // Duration of each audio packet.
« no previous file with comments | « content/browser/speech/speech_input_dispatcher_host.h ('k') | content/browser/ssl/ssl_cert_error_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698