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

Unified Diff: content/browser/renderer_host/media/audio_sync_reader.h

Issue 8587009: Add OVERRIDE to content/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase 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: content/browser/renderer_host/media/audio_sync_reader.h
diff --git a/content/browser/renderer_host/media/audio_sync_reader.h b/content/browser/renderer_host/media/audio_sync_reader.h
index 809e1176e4141ba0081ce3ec548ebd70a6a1f80c..4aff8aa963aa656782d2cd6cc1539e26644d222e 100644
--- a/content/browser/renderer_host/media/audio_sync_reader.h
+++ b/content/browser/renderer_host/media/audio_sync_reader.h
@@ -28,10 +28,10 @@ class AudioSyncReader : public media::AudioOutputController::SyncReader {
virtual ~AudioSyncReader();
// media::AudioOutputController::SyncReader implementations.
- virtual void UpdatePendingBytes(uint32 bytes);
- virtual uint32 Read(void* data, uint32 size);
- virtual void Close();
- virtual bool DataReady();
+ virtual void UpdatePendingBytes(uint32 bytes) OVERRIDE;
+ virtual uint32 Read(void* data, uint32 size) OVERRIDE;
+ virtual void Close() OVERRIDE;
+ virtual bool DataReady() OVERRIDE;
bool Init();
bool PrepareForeignSocketHandle(base::ProcessHandle process_handle,

Powered by Google App Engine
This is Rietveld 408576698