summaryrefslogtreecommitdiffstats
path: root/content/browser/speech/google_streaming_remote_engine.h
diff options
context:
space:
mode:
authormohan.reddy <mohan.reddy@samsung.com>2014-10-06 22:50:23 -0700
committerCommit bot <commit-bot@chromium.org>2014-10-07 05:50:42 +0000
commitd7f545eacae6e1456c3d7e78c38c5a68239c453f (patch)
tree7b6c0b01c5bb9685354f98a8e6e7a1fa48f5e538 /content/browser/speech/google_streaming_remote_engine.h
parentd23d9adf5478bb45d70f37502c39462d439f609c (diff)
downloadchromium_src-d7f545eacae6e1456c3d7e78c38c5a68239c453f.zip
chromium_src-d7f545eacae6e1456c3d7e78c38c5a68239c453f.tar.gz
chromium_src-d7f545eacae6e1456c3d7e78c38c5a68239c453f.tar.bz2
Replacing the OVERRIDE with override and FINAL with final in content/browser/speech
This step is a giant search and replace for OVERRIDE and FINAL to replace them with their lowercase versions. BUG=417463 Review URL: https://codereview.chromium.org/631083002 Cr-Commit-Position: refs/heads/master@{#298388}
Diffstat (limited to 'content/browser/speech/google_streaming_remote_engine.h')
-rw-r--r--content/browser/speech/google_streaming_remote_engine.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/content/browser/speech/google_streaming_remote_engine.h b/content/browser/speech/google_streaming_remote_engine.h
index 11afae0..cc5c177 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.