Index: chrome/browser/media/media_internals.h |
diff --git a/chrome/browser/media/media_internals.h b/chrome/browser/media/media_internals.h |
index a5b62e108438b5f6b777d5dc1519f34a7bc8ce45..b3e8d9669fd4584c62904e3b50a804db87f4c452 100644 |
--- a/chrome/browser/media/media_internals.h |
+++ b/chrome/browser/media/media_internals.h |
@@ -25,13 +25,18 @@ class MediaInternals : public MediaObserver, public base::NonThreadSafe { |
virtual ~MediaInternals(); |
// MediaObserver implementation. |
- virtual void OnDeleteAudioStream(void* host, int stream_id); |
- virtual void OnSetAudioStreamPlaying(void* host, int stream_id, bool playing); |
- virtual void OnSetAudioStreamStatus(void* host, int stream_id, |
- const std::string& status); |
- virtual void OnSetAudioStreamVolume(void* host, int stream_id, double volume); |
+ virtual void OnDeleteAudioStream(void* host, int stream_id) OVERRIDE; |
+ virtual void OnSetAudioStreamPlaying(void* host, |
+ int stream_id, |
+ bool playing) OVERRIDE; |
+ virtual void OnSetAudioStreamStatus(void* host, |
+ int stream_id, |
+ const std::string& status) OVERRIDE; |
+ virtual void OnSetAudioStreamVolume(void* host, |
+ int stream_id, |
+ double volume) OVERRIDE; |
virtual void OnMediaEvent(int render_process_id, |
- const media::MediaLogEvent& event); |
+ const media::MediaLogEvent& event) OVERRIDE; |
// Methods for observers. |
// Observers should add themselves on construction and remove themselves |