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

Unified Diff: chrome/browser/resources/hangout_services/thunk.js

Issue 2801853005: Create a private API for controlling WebRTC's AEC3 (Closed)
Patch Set: Created 3 years, 8 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
Index: chrome/browser/resources/hangout_services/thunk.js
diff --git a/chrome/browser/resources/hangout_services/thunk.js b/chrome/browser/resources/hangout_services/thunk.js
index 68c28bf7dc51a5a1b8a4983c1516ba7e0bb889ca..9e6e1183dcfe65192b30ed0e10fb1e9027deeee0 100644
--- a/chrome/browser/resources/hangout_services/thunk.js
+++ b/chrome/browser/resources/hangout_services/thunk.js
@@ -202,6 +202,11 @@ chrome.runtime.onMessageExternal.addListener(
chrome.webrtcLoggingPrivate.stopWebRtcEventLogging(
requestInfo, origin, doSendResponse);
return true;
+ } else if (method == 'setAudioExperiments') {
+ var experiments = message['experiments'];
+ chrome.webrtcAudioPrivate.setAudioExperiments(
+ requestInfo, origin, experiments, doSendResponse);
+ return true;
}
throw new Error('Unknown method: ' + method);

Powered by Google App Engine
This is Rietveld 408576698