| 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_;
|
|
|