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

Unified Diff: content/test/webrtc_audio_device_test.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/test/test_notification_tracker.h ('k') | content/worker/websharedworker_stub.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/webrtc_audio_device_test.h
diff --git a/content/test/webrtc_audio_device_test.h b/content/test/webrtc_audio_device_test.h
index 6109d1ddd7f7dd2b87c187faf7b5a001b70474f3..39f54cf7ad2947901ac53a05f21764f6c23e16c5 100644
--- a/content/test/webrtc_audio_device_test.h
+++ b/content/test/webrtc_audio_device_test.h
@@ -134,8 +134,8 @@ class WebRTCAudioDeviceTest
WebRTCAudioDeviceTest();
virtual ~WebRTCAudioDeviceTest();
- virtual void SetUp();
- virtual void TearDown();
+ virtual void SetUp() OVERRIDE;
+ virtual void TearDown() OVERRIDE;
// Sends an IPC message to the IO thread channel.
bool Send(IPC::Message* message);
@@ -155,7 +155,7 @@ class WebRTCAudioDeviceTest
void OnGetHardwareInputSampleRate(double* sample_rate);
// IPC::Channel::Listener implementation.
- virtual bool OnMessageReceived(const IPC::Message& message);
+ virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
// Posts a final task to the IO message loop and waits for completion.
void WaitForIOThreadCompletion();
@@ -199,8 +199,8 @@ class WebRTCTransportImpl : public webrtc::Transport {
explicit WebRTCTransportImpl(webrtc::VoENetwork* network);
virtual ~WebRTCTransportImpl();
- virtual int SendPacket(int channel, const void* data, int len);
- virtual int SendRTCPPacket(int channel, const void* data, int len);
+ virtual int SendPacket(int channel, const void* data, int len) OVERRIDE;
+ virtual int SendRTCPPacket(int channel, const void* data, int len) OVERRIDE;
private:
webrtc::VoENetwork* network_;
« no previous file with comments | « content/test/test_notification_tracker.h ('k') | content/worker/websharedworker_stub.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698