summaryrefslogtreecommitdiffstats
path: root/content/browser/speech/speech_recognizer_impl_android.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/speech_recognizer_impl_android.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/speech_recognizer_impl_android.h')
-rw-r--r--content/browser/speech/speech_recognizer_impl_android.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/content/browser/speech/speech_recognizer_impl_android.h b/content/browser/speech/speech_recognizer_impl_android.h
index e6e7f09..cdf0b4d 100644
--- a/content/browser/speech/speech_recognizer_impl_android.h
+++ b/content/browser/speech/speech_recognizer_impl_android.h
@@ -24,11 +24,11 @@ class CONTENT_EXPORT SpeechRecognizerImplAndroid : public SpeechRecognizer {
int session_id);
// SpeechRecognizer methods.
- virtual void StartRecognition(const std::string& device_id) OVERRIDE;
- virtual void AbortRecognition() OVERRIDE;
- virtual void StopAudioCapture() OVERRIDE;
- virtual bool IsActive() const OVERRIDE;
- virtual bool IsCapturingAudio() const OVERRIDE;
+ virtual void StartRecognition(const std::string& device_id) override;
+ virtual void AbortRecognition() override;
+ virtual void StopAudioCapture() override;
+ virtual bool IsActive() const override;
+ virtual bool IsCapturingAudio() const override;
// Called from Java methods via JNI.
void OnAudioStart(JNIEnv* env, jobject obj);