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

Unified Diff: chrome/browser/media/media_internals.h

Issue 8612007: Add OVERRIDE to chrome/browser/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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
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

Powered by Google App Engine
This is Rietveld 408576698