Chromium Code Reviews| Index: third_party/WebKit/Source/modules/mediastream/HTMLMediaElementMediaStream.idl |
| diff --git a/third_party/WebKit/Source/modules/mediastream/HTMLMediaElementMediaStream.idl b/third_party/WebKit/Source/modules/mediastream/HTMLMediaElementMediaStream.idl |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..11d44c32fa665d22457824215f9bb2a557984236 |
| --- /dev/null |
| +++ b/third_party/WebKit/Source/modules/mediastream/HTMLMediaElementMediaStream.idl |
| @@ -0,0 +1,18 @@ |
| +// Copyright 2016 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. |
| + |
| +// https://html.spec.whatwg.org/multipage/embedded-content.html#dom-media-srcobject |
| + |
| +// TODO(guidou): Add support for MediaSource and Blob, as defined in the spec. |
| +typedef MediaStream MediaProvider; |
| + |
| +[ |
| + RuntimeEnabled=SrcObject |
| +] partial interface HTMLMediaElement { |
|
philipj_slow
2016/03/21 11:13:13
As stated on blink-dev, I think this could be put
Guido Urdaneta
2016/03/21 16:34:53
Moving this to modules/srcobject works fine.
git c
|
| + // TODO(haraken): Per the spec, the srcObject should be defined in |
| + // HTMLMediaElement.idl. However, we cannot define srcObject in |
| + // HTMLMediaElement.idl because of the dependency restriction from modules/ |
| + // to core/. For now we avoid the problem by using a partial interface. |
| + attribute MediaProvider? srcObject; |
| +}; |