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

Unified Diff: media/audio/fake_audio_log_factory.cc

Issue 623263003: replace OVERRIDE and FINAL with override and final in media/ (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 | « media/audio/fake_audio_log_factory.h ('k') | media/audio/fake_audio_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/audio/fake_audio_log_factory.cc
diff --git a/media/audio/fake_audio_log_factory.cc b/media/audio/fake_audio_log_factory.cc
index 5e2d134520c27b9e91dbd6e9130a5e5e5f885ad7..af5dc8eca2ac38968698cca41a6e359891aebaa9 100644
--- a/media/audio/fake_audio_log_factory.cc
+++ b/media/audio/fake_audio_log_factory.cc
@@ -12,12 +12,12 @@ class FakeAudioLogImpl : public AudioLog {
virtual ~FakeAudioLogImpl() {}
virtual void OnCreated(int component_id,
const media::AudioParameters& params,
- const std::string& device_id) OVERRIDE {}
- virtual void OnStarted(int component_id) OVERRIDE {}
- virtual void OnStopped(int component_id) OVERRIDE {}
- virtual void OnClosed(int component_id) OVERRIDE {}
- virtual void OnError(int component_id) OVERRIDE {}
- virtual void OnSetVolume(int component_id, double volume) OVERRIDE {}
+ const std::string& device_id) override {}
+ virtual void OnStarted(int component_id) override {}
+ virtual void OnStopped(int component_id) override {}
+ virtual void OnClosed(int component_id) override {}
+ virtual void OnError(int component_id) override {}
+ virtual void OnSetVolume(int component_id, double volume) override {}
};
FakeAudioLogFactory::FakeAudioLogFactory() {}
« no previous file with comments | « media/audio/fake_audio_log_factory.h ('k') | media/audio/fake_audio_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698