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

Unified Diff: webrtc/sound/soundsystemproxy.h

Issue 1425533003: Fix chromium-style warnings in webrtc/sound/. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 years, 2 months 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 | « webrtc/sound/soundoutputstreaminterface.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/sound/soundsystemproxy.h
diff --git a/webrtc/sound/soundsystemproxy.h b/webrtc/sound/soundsystemproxy.h
index d13cf15b7422c3b3d6e7798e88845c15420f9fad..19696b1fef42812de7958f9e5988fc24c91629f6 100644
--- a/webrtc/sound/soundsystemproxy.h
+++ b/webrtc/sound/soundsystemproxy.h
@@ -25,18 +25,18 @@ class SoundSystemProxy : public SoundSystemInterface {
// Each of these methods simply defers to wrapped_ if non-NULL, else fails.
- virtual bool EnumeratePlaybackDevices(SoundDeviceLocatorList *devices);
- virtual bool EnumerateCaptureDevices(SoundDeviceLocatorList *devices);
+ bool EnumeratePlaybackDevices(SoundDeviceLocatorList *devices) override;
+ bool EnumerateCaptureDevices(SoundDeviceLocatorList *devices) override;
- virtual bool GetDefaultPlaybackDevice(SoundDeviceLocator **device);
- virtual bool GetDefaultCaptureDevice(SoundDeviceLocator **device);
+ bool GetDefaultPlaybackDevice(SoundDeviceLocator **device) override;
+ bool GetDefaultCaptureDevice(SoundDeviceLocator **device) override;
- virtual SoundOutputStreamInterface *OpenPlaybackDevice(
+ SoundOutputStreamInterface *OpenPlaybackDevice(
const SoundDeviceLocator *device,
- const OpenParams &params);
- virtual SoundInputStreamInterface *OpenCaptureDevice(
+ const OpenParams &params) override;
+ SoundInputStreamInterface *OpenCaptureDevice(
const SoundDeviceLocator *device,
- const OpenParams &params);
+ const OpenParams &params) override;
protected:
SoundSystemInterface *wrapped_;
« no previous file with comments | « webrtc/sound/soundoutputstreaminterface.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698