Chromium Code Reviews| 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); |
| +}; |
| + |