Chromium Code Reviews| 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; |
|
philipj_slow
2014/09/16 13:39:51
Remove these bits since they are unused.
perkj_chrome
2014/09/17 19:26:13
Removed but merged the typedef comment with the fi
|
| [ |
| ActiveDOMObject, |
| @@ -35,6 +39,8 @@ |
| // network state |
| [Reflect, URL] attribute DOMString src; |
| + // FIXME: should be attribute MediaProvider? srcObject; http://crbug.com/240176 |
|
philipj_slow
2014/09/16 13:39:51
There's a suspicious non-ASCII "h" here.
perkj_chrome
2014/09/17 19:26:13
Done.
|
| + [Custom] attribute object? srcObject; |
| [URL] readonly attribute DOMString currentSrc; |
| [Reflect, ReflectOnly=("anonymous","use-credentials"), ReflectEmpty="anonymous", ReflectInvalid="anonymous"] attribute DOMString crossOrigin; |