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

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

Issue 2801853005: Create a private API for controlling WebRTC's AEC3 (Closed)
Patch Set: Fixing typo 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..2278a65d129a8afcd13db67edb37909e53018095 100644
--- a/chrome/browser/resources/hangout_services/thunk.js
+++ b/chrome/browser/resources/hangout_services/thunk.js
@@ -202,6 +202,12 @@ 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 false;
}
throw new Error('Unknown method: ' + method);
« no previous file with comments | « chrome/browser/resources/hangout_services/manifest.json ('k') | chrome/common/extensions/api/webrtc_audio_private.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698