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

Unified Diff: Source/modules/audio_output_devices/HTMLMediaElementAudioOutputDevice.idl

Issue 1182243005: Add sinkId/setSinkId() extension to HTMLMediaElement. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Update expected value for public interface/properties tests Created 5 years, 6 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: Source/modules/audio_output_devices/HTMLMediaElementAudioOutputDevice.idl
diff --git a/Source/modules/audio_output_devices/HTMLMediaElementAudioOutputDevice.idl b/Source/modules/audio_output_devices/HTMLMediaElementAudioOutputDevice.idl
new file mode 100644
index 0000000000000000000000000000000000000000..4223f780ef6bffc4a1812ba4e33d9c15d0391506
--- /dev/null
+++ b/Source/modules/audio_output_devices/HTMLMediaElementAudioOutputDevice.idl
@@ -0,0 +1,11 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+// http://w3c.github.io/mediacapture-output/#htmlmediaelement-extensions
Peter Beverloo 2015/06/18 14:21:20 micro nit: github.io links are also available over
+
+partial interface HTMLMediaElement {
+ [RuntimeEnabled=AudioOutputDevices] readonly attribute DOMString sinkId;
+ [RuntimeEnabled=AudioOutputDevices, TypeChecking=Interface, CallWith=ScriptState] Promise<void> setSinkId(DOMString sinkId);
+};
+

Powered by Google App Engine
This is Rietveld 408576698