| Index: Source/core/html/HTMLMediaElement.idl
|
| diff --git a/Source/core/html/HTMLMediaElement.idl b/Source/core/html/HTMLMediaElement.idl
|
| index 2df110a1915fba28ed78c45ccf0e8dff1bd874cd..b60aa69d54dfba478f6ed634ea0c9780a6d2f2f6 100644
|
| --- a/Source/core/html/HTMLMediaElement.idl
|
| +++ b/Source/core/html/HTMLMediaElement.idl
|
| @@ -22,6 +22,10 @@
|
| * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
| * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
| */
|
| +
|
| +// FIXME: should use typedef instead, but
|
| +// requires better union type support: http://crbug.com/240176
|
| +typedef (MediaStream or MediaSource or Blob) MediaProvider;
|
|
|
| [
|
| ActiveDOMObject,
|
| @@ -35,6 +39,8 @@
|
|
|
| // network state
|
| [Reflect, URL] attribute DOMString src;
|
| + // FIXME: should be attribute MediaProvider? srcObject; http://crbug.com/240176
|
| + [Custom] attribute object? srcObject;
|
| [URL] readonly attribute DOMString currentSrc;
|
| [Reflect, ReflectOnly=("anonymous","use-credentials"), ReflectEmpty="anonymous", ReflectInvalid="anonymous"] attribute DOMString crossOrigin;
|
|
|
|
|