Chromium Code Reviews| Index: Source/modules/mediasource/TrackDefaultList.idl |
| diff --git a/Source/modules/mediasource/TrackDefaultList.idl b/Source/modules/mediasource/TrackDefaultList.idl |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..a5e1f6ff394c0643c350788f033c87153a751dc5 |
| --- /dev/null |
| +++ b/Source/modules/mediasource/TrackDefaultList.idl |
| @@ -0,0 +1,16 @@ |
| +// 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. |
| + |
| +// Per 18 Nov 2014 Editor's Draft |
| +// https://w3c.github.io/media-source/#trackdefaultlist |
| + |
| +[ |
| + Constructor(sequence<TrackDefault> trackDefaults), |
| + RaisesException=Constructor, |
| + GarbageCollected, |
| + RuntimeEnabled=MediaSourceExperimental, |
| +] interface TrackDefaultList { |
| + readonly attribute unsigned long length; |
|
sof
2014/12/12 09:37:00
four space indent the interface declarations.
wolenetz
2014/12/12 21:48:05
Done.
|
| + [ImplementedAs=item] getter TrackDefault (unsigned long index); |
| +}; |