Chromium Code Reviews| Index: Source/core/html/track/VideoTrack.idl |
| diff --git a/Source/core/html/track/VideoTrack.idl b/Source/core/html/track/VideoTrack.idl |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..7223b6c82218e6e9766e32462328c3a83eabcbab |
| --- /dev/null |
| +++ b/Source/core/html/track/VideoTrack.idl |
| @@ -0,0 +1,13 @@ |
| +// Copyright 2014 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. |
| + |
| +[ |
| + RuntimeEnabled=AudioVideoTracks, |
|
sof
2014/05/22 11:47:36
[WillBeGarbageCollected]
|
| +] interface VideoTrack { |
| + readonly attribute DOMString id; |
| + readonly attribute DOMString kind; |
| + readonly attribute DOMString label; |
| + readonly attribute DOMString language; |
| + attribute boolean selected; |
| +}; |