Chromium Code Reviews| Index: Source/core/html/track/AudioTrack.idl |
| diff --git a/Source/core/html/track/AudioTrack.idl b/Source/core/html/track/AudioTrack.idl |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..cfd291ec117fb94fc6c908fa7418f556542c035d |
| --- /dev/null |
| +++ b/Source/core/html/track/AudioTrack.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
Add [WillBeGarbageCollected] to signal that this i
|
| +] interface AudioTrack { |
| + readonly attribute DOMString id; |
| + readonly attribute DOMString kind; |
| + readonly attribute DOMString label; |
| + readonly attribute DOMString language; |
| + attribute boolean enabled; |
| +}; |