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

Unified Diff: media/audio/sounds/sounds_manager.cc

Issue 655713003: Standardize usage of virtual/override/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.cc ('k') | media/audio/sounds/test_data.h » ('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 e75f3f2edc3f377c4d3cd09cfd26a28078e8733d..58ca2387e259f98225173b760ae403633bc048dd 100644
--- a/media/audio/sounds/sounds_manager.cc
+++ b/media/audio/sounds/sounds_manager.cc
@@ -24,13 +24,12 @@ bool g_initialized_for_testing = false;
class SoundsManagerImpl : public SoundsManager {
public:
SoundsManagerImpl();
- virtual ~SoundsManagerImpl();
+ ~SoundsManagerImpl() override;
// 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;
+ bool Initialize(SoundKey key, const base::StringPiece& data) override;
+ bool Play(SoundKey key) override;
+ 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.cc ('k') | media/audio/sounds/test_data.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698