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

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

Issue 2801853005: Create a private API for controlling WebRTC's AEC3 (Closed)
Patch Set: Remember the override in RPHI 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..f3e74c85c48c7cc964fa1470774400ce40a90582 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);
+ return true;
Henrik Grunell 2017/04/10 12:33:47 Here, you have to do doSendResponse(); return fal
hlundin-chromium 2017/04/10 13:03:17 Done.
}
throw new Error('Unknown method: ' + method);

Powered by Google App Engine
This is Rietveld 408576698