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

Unified Diff: content/browser/renderer_host/media/audio_input_sync_writer.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_input_sync_writer.h
diff --git a/content/browser/renderer_host/media/audio_input_sync_writer.h b/content/browser/renderer_host/media/audio_input_sync_writer.h
index 5dc89dfae1db03e91b6ff4bd9cc6720f067ae686..b3f69a8bcf7c32baa987da523b0b75e0c660416f 100644
--- a/content/browser/renderer_host/media/audio_input_sync_writer.h
+++ b/content/browser/renderer_host/media/audio_input_sync_writer.h
@@ -26,9 +26,9 @@ class AudioInputSyncWriter : public media::AudioInputController::SyncWriter {
virtual ~AudioInputSyncWriter();
// media::AudioOutputController::SyncWriter implementation.
- virtual void UpdateRecordedBytes(uint32 bytes);
- virtual uint32 Write(const void* data, uint32 size);
- virtual void Close();
+ virtual void UpdateRecordedBytes(uint32 bytes) OVERRIDE;
+ virtual uint32 Write(const void* data, uint32 size) OVERRIDE;
+ virtual void Close() OVERRIDE;
bool Init();
bool PrepareForeignSocketHandle(base::ProcessHandle process_handle,

Powered by Google App Engine
This is Rietveld 408576698