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

Unified Diff: content/public/test/fake_speech_recognition_manager.h

Issue 629203002: Replace OVERRIDE and FINAL with override and final in content/public/[a-s]* (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
« no previous file with comments | « content/public/test/download_test_observer.h ('k') | content/public/test/frame_load_waiter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/test/fake_speech_recognition_manager.h
diff --git a/content/public/test/fake_speech_recognition_manager.h b/content/public/test/fake_speech_recognition_manager.h
index ba58c90948933795b9e6990445c2862a8f07d3ea..bd046988e107cdee5c065a18974dfae0c4f790ae 100644
--- a/content/public/test/fake_speech_recognition_manager.h
+++ b/content/public/test/fake_speech_recognition_manager.h
@@ -43,23 +43,23 @@ class FakeSpeechRecognitionManager : public SpeechRecognitionManager {
// SpeechRecognitionManager methods.
virtual int CreateSession(
- const SpeechRecognitionSessionConfig& config) OVERRIDE;
- virtual void StartSession(int session_id) OVERRIDE;
- virtual void AbortSession(int session_id) OVERRIDE;
- virtual void StopAudioCaptureForSession(int session_id) OVERRIDE;
- virtual void AbortAllSessionsForRenderProcess(int render_process_id) OVERRIDE;
+ const SpeechRecognitionSessionConfig& config) override;
+ virtual void StartSession(int session_id) override;
+ virtual void AbortSession(int session_id) override;
+ virtual void StopAudioCaptureForSession(int session_id) override;
+ virtual void AbortAllSessionsForRenderProcess(int render_process_id) override;
virtual void AbortAllSessionsForRenderView(int render_process_id,
- int render_view_id) OVERRIDE;
- virtual bool HasAudioInputDevices() OVERRIDE;
- virtual base::string16 GetAudioInputDeviceModel() OVERRIDE;
- virtual void ShowAudioInputSettings() OVERRIDE {}
+ int render_view_id) override;
+ virtual bool HasAudioInputDevices() override;
+ virtual base::string16 GetAudioInputDeviceModel() override;
+ virtual void ShowAudioInputSettings() override {}
virtual int GetSession(int render_process_id,
int render_view_id,
- int request_id) const OVERRIDE;
+ int request_id) const override;
virtual const SpeechRecognitionSessionConfig& GetSessionConfig(
- int session_id) const OVERRIDE;
+ int session_id) const override;
virtual SpeechRecognitionSessionContext GetSessionContext(
- int session_id) const OVERRIDE;
+ int session_id) const override;
private:
void SetFakeRecognitionResult();
« no previous file with comments | « content/public/test/download_test_observer.h ('k') | content/public/test/frame_load_waiter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698