Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2014 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 [ | |
| 6 RuntimeEnabled=AudioVideoTracks | |
| 7 ] interface VideoTrackList : EventTarget { | |
| 8 readonly attribute unsigned long length; | |
| 9 getter VideoTrack (unsigned long index); | |
| 10 VideoTrack getTrackById(DOMString id); | |
|
philipj_slow
2014/03/13 10:00:04
can be "VideoTrack?" I think
acolwell GONE FROM CHROMIUM
2014/03/18 22:02:15
Done.
| |
| 11 readonly attribute long selectedIndex; | |
| 12 | |
| 13 attribute EventHandler onchange; | |
| 14 attribute EventHandler onaddtrack; | |
| 15 attribute EventHandler onremovetrack; | |
| 16 }; | |
| OLD | NEW |