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

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

Issue 2784563003: WebRTC Audio private API: removing WebRtcAudioPrivate(Set/Get)ActiveSinkFunction (Closed)
Patch Set: updated api version 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 2278a65d129a8afcd13db67edb37909e53018095..e2a966d5735ec104263fe959eaacec05f85bb66e 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(
« 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