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

Unified Diff: content/renderer/media/audio_device.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
« no previous file with comments | « content/renderer/indexed_db_dispatcher.h ('k') | content/renderer/media/audio_input_device.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/media/audio_device.h
diff --git a/content/renderer/media/audio_device.h b/content/renderer/media/audio_device.h
index 8c429d8e0c534c9e14db18387d96d63e9fb94bd6..d07b751af3e64af56c6f3693f62de5ea96350716 100644
--- a/content/renderer/media/audio_device.h
+++ b/content/renderer/media/audio_device.h
@@ -106,13 +106,14 @@ class CONTENT_EXPORT AudioDevice
// Methods called on IO thread ----------------------------------------------
// AudioMessageFilter::Delegate methods, called by AudioMessageFilter.
- virtual void OnRequestPacket(AudioBuffersState buffers_state);
- virtual void OnStateChanged(AudioStreamState state);
- virtual void OnCreated(base::SharedMemoryHandle handle, uint32 length);
+ virtual void OnRequestPacket(AudioBuffersState buffers_state) OVERRIDE;
+ virtual void OnStateChanged(AudioStreamState state) OVERRIDE;
+ virtual void OnCreated(base::SharedMemoryHandle handle,
+ uint32 length) OVERRIDE;
virtual void OnLowLatencyCreated(base::SharedMemoryHandle handle,
base::SyncSocket::Handle socket_handle,
- uint32 length);
- virtual void OnVolume(double volume);
+ uint32 length) OVERRIDE;
+ virtual void OnVolume(double volume) OVERRIDE;
private:
// Methods called on IO thread ----------------------------------------------
@@ -132,7 +133,7 @@ class CONTENT_EXPORT AudioDevice
void FireRenderCallback();
// DelegateSimpleThread::Delegate implementation.
- virtual void Run();
+ virtual void Run() OVERRIDE;
// Format
size_t buffer_size_; // in sample-frames
« no previous file with comments | « content/renderer/indexed_db_dispatcher.h ('k') | content/renderer/media/audio_input_device.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698