Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 // https://html.spec.whatwg.org/multipage/embedded-content.html#dom-media-srcobj ect | |
| 6 | |
| 7 [ | |
| 8 RuntimeEnabled=SrcObject | |
| 9 ] partial interface HTMLMediaElement { | |
|
haraken
2016/03/18 23:37:40
Would you add:
// TODO(haraken): Per the spec,
Guido Urdaneta
2016/03/20 12:16:30
Done.
| |
| 10 attribute MediaStream? srcObject; | |
|
haraken
2016/03/18 23:37:40
The spec says that the type is MediaProvider?. Is
Guido Urdaneta
2016/03/20 12:16:30
Now using MediaProvider, which is typedef'ed to be
| |
| 11 }; | |
| OLD | NEW |