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

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

Issue 631083002: Replacing the OVERRIDE with override and FINAL with final in content/browser/speech (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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: content/browser/speech/google_streaming_remote_engine.h
diff --git a/content/browser/speech/google_streaming_remote_engine.h b/content/browser/speech/google_streaming_remote_engine.h
index 11afae00e6c8952c33dc2123dac6ee54fdb7575f..cc5c17734e086cf4fbaf13e1da29afbf44050d0d 100644
--- a/content/browser/speech/google_streaming_remote_engine.h
+++ b/content/browser/speech/google_streaming_remote_engine.h
@@ -60,18 +60,18 @@ class CONTENT_EXPORT GoogleStreamingRemoteEngine
virtual ~GoogleStreamingRemoteEngine();
// SpeechRecognitionEngine methods.
- virtual void SetConfig(const SpeechRecognitionEngineConfig& config) OVERRIDE;
- virtual void StartRecognition() OVERRIDE;
- virtual void EndRecognition() OVERRIDE;
- virtual void TakeAudioChunk(const AudioChunk& data) OVERRIDE;
- virtual void AudioChunksEnded() OVERRIDE;
- virtual bool IsRecognitionPending() const OVERRIDE;
- virtual int GetDesiredAudioChunkDurationMs() const OVERRIDE;
+ virtual void SetConfig(const SpeechRecognitionEngineConfig& config) override;
+ virtual void StartRecognition() override;
+ virtual void EndRecognition() override;
+ virtual void TakeAudioChunk(const AudioChunk& data) override;
+ virtual void AudioChunksEnded() override;
+ virtual bool IsRecognitionPending() const override;
+ virtual int GetDesiredAudioChunkDurationMs() const override;
// net::URLFetcherDelegate methods.
- virtual void OnURLFetchComplete(const net::URLFetcher* source) OVERRIDE;
+ virtual void OnURLFetchComplete(const net::URLFetcher* source) override;
virtual void OnURLFetchDownloadProgress(const net::URLFetcher* source,
- int64 current, int64 total) OVERRIDE;
+ int64 current, int64 total) override;
private:
// Response status codes from the speech recognition webservice.

Powered by Google App Engine
This is Rietveld 408576698