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

Unified Diff: content/renderer/media/webrtc_audio_device_not_impl.cc

Issue 2225263003: Add missing methods to WebRtcAudioDeviceNotImpl. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix compile. Created 4 years, 4 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 | « content/renderer/media/webrtc_audio_device_not_impl.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/media/webrtc_audio_device_not_impl.cc
diff --git a/content/renderer/media/webrtc_audio_device_not_impl.cc b/content/renderer/media/webrtc_audio_device_not_impl.cc
index a86fca0cdeee0cb7147f7b4bd794714142b5a6ab..016c32e595d20cd7a0d355abe19bae94395f61b6 100644
--- a/content/renderer/media/webrtc_audio_device_not_impl.cc
+++ b/content/renderer/media/webrtc_audio_device_not_impl.cc
@@ -270,4 +270,32 @@ int32_t WebRtcAudioDeviceNotImpl::EnableBuiltInAEC(bool enable) {
return 0;
}
+bool WebRtcAudioDeviceNotImpl::BuiltInAGCIsAvailable() const {
+ return false;
+}
+
+int32_t WebRtcAudioDeviceNotImpl::EnableBuiltInAGC(bool enable) {
+ return 0;
+}
+
+bool WebRtcAudioDeviceNotImpl::BuiltInNSIsAvailable() const {
+ return false;
+}
+
+int32_t WebRtcAudioDeviceNotImpl::EnableBuiltInNS(bool enable) {
+ return 0;
+}
+
+#if defined(OS_IOS)
+int WebRtcAudioDeviceNotImpl::GetPlayoutAudioParameters(
+ AudioParameters* params) const {
+ return 0;
+}
+
+int WebRtcAudioDeviceNotImpl::GetRecordAudioParameters(
+ AudioParameters* params) const {
+ return 0;
+}
+#endif // OS_IOS
+
} // namespace content
« no previous file with comments | « content/renderer/media/webrtc_audio_device_not_impl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698