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

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

Issue 2784563003: WebRTC Audio private API: removing WebRtcAudioPrivate(Set/Get)ActiveSinkFunction (Closed)
Patch Set: fix for webrtc_audio_private_browsertest Created 3 years, 9 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..9676635e151d3df8f33c59496572b07f2813f4b4 100644
--- a/chrome/browser/resources/hangout_services/thunk.js
+++ b/chrome/browser/resources/hangout_services/thunk.js
@@ -144,15 +144,6 @@ chrome.runtime.onMessageExternal.addListener(
} else if (method == 'getSinks') {
chrome.webrtcAudioPrivate.getSinks(doSendResponse);
return true;
- } else if (method == 'getActiveSink') {
- chrome.webrtcAudioPrivate.getActiveSink(
- requestInfo, doSendResponse);
- return true;
- } else if (method == 'setActiveSink') {
- var sinkId = message['sinkId'];
- chrome.webrtcAudioPrivate.setActiveSink(
- requestInfo, sinkId, doSendResponse);
- return true;
} else if (method == 'getAssociatedSink') {
var sourceId = message['sourceId'];
chrome.webrtcAudioPrivate.getAssociatedSink(

Powered by Google App Engine
This is Rietveld 408576698