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

Unified Diff: media/audio/sounds/sounds_manager.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/sounds/audio_stream_handler_unittest.cc ('k') | media/audio/sounds/sounds_manager_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/audio/sounds/sounds_manager.cc
diff --git a/media/audio/sounds/sounds_manager.cc b/media/audio/sounds/sounds_manager.cc
index e80843685cc252ea79d1175e1cda26c41d5e3fc2..e75f3f2edc3f377c4d3cd09cfd26a28078e8733d 100644
--- a/media/audio/sounds/sounds_manager.cc
+++ b/media/audio/sounds/sounds_manager.cc
@@ -28,9 +28,9 @@ class SoundsManagerImpl : public SoundsManager {
// SoundsManager implementation:
virtual bool Initialize(SoundKey key,
- const base::StringPiece& data) OVERRIDE;
- virtual bool Play(SoundKey key) OVERRIDE;
- virtual base::TimeDelta GetDuration(SoundKey key) OVERRIDE;
+ const base::StringPiece& data) override;
+ virtual bool Play(SoundKey key) override;
+ virtual base::TimeDelta GetDuration(SoundKey key) override;
private:
base::hash_map<SoundKey, linked_ptr<AudioStreamHandler> > handlers_;
« no previous file with comments | « media/audio/sounds/audio_stream_handler_unittest.cc ('k') | media/audio/sounds/sounds_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698