OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 21 matching lines...) Expand all Loading... |
32 | 32 |
33 enum AppendMode { | 33 enum AppendMode { |
34 "segments", | 34 "segments", |
35 "sequence" | 35 "sequence" |
36 }; | 36 }; |
37 | 37 |
38 [ | 38 [ |
39 ActiveDOMObject, | 39 ActiveDOMObject, |
40 NoInterfaceObject, | 40 NoInterfaceObject, |
41 RuntimeEnabled=MediaSource, | 41 RuntimeEnabled=MediaSource, |
42 TypeChecking=Interface, | |
43 ] interface SourceBuffer : EventTarget { | 42 ] interface SourceBuffer : EventTarget { |
44 | 43 |
45 // Gets or sets the AppendMode. | 44 // Gets or sets the AppendMode. |
46 // FIXME: Remove MediaSourceExperimental once mode attribute is implemented
and stabilized. See http://crbug.com/249422. | 45 // FIXME: Remove MediaSourceExperimental once mode attribute is implemented
and stabilized. See http://crbug.com/249422. |
47 [RaisesException=Setter, RuntimeEnabled=MediaSourceExperimental] attribute A
ppendMode mode; | 46 [RaisesException=Setter, RuntimeEnabled=MediaSourceExperimental] attribute A
ppendMode mode; |
48 | 47 |
49 readonly attribute boolean updating; | 48 readonly attribute boolean updating; |
50 | 49 |
51 // Returns the time ranges buffered. | 50 // Returns the time ranges buffered. |
52 [RaisesException=Getter] readonly attribute TimeRanges buffered; | 51 [RaisesException=Getter] readonly attribute TimeRanges buffered; |
(...skipping 14 matching lines...) Expand all Loading... |
67 [RaisesException, RuntimeEnabled=ExperimentalStream] void appendStream(Strea
m stream, optional unsigned long long maxSize); | 66 [RaisesException, RuntimeEnabled=ExperimentalStream] void appendStream(Strea
m stream, optional unsigned long long maxSize); |
68 | 67 |
69 // Abort the current segment append sequence. | 68 // Abort the current segment append sequence. |
70 [RaisesException] void abort(); | 69 [RaisesException] void abort(); |
71 [RaisesException] void remove(double start, unrestricted double end); | 70 [RaisesException] void remove(double start, unrestricted double end); |
72 | 71 |
73 // Gets or sets the TrackDefaultList this SourceBuffer may consult during | 72 // Gets or sets the TrackDefaultList this SourceBuffer may consult during |
74 // the initialization segment algorithm. | 73 // the initialization segment algorithm. |
75 [RaisesException=Setter, RuntimeEnabled=MediaSourceExperimental] attribute T
rackDefaultList trackDefaults; | 74 [RaisesException=Setter, RuntimeEnabled=MediaSourceExperimental] attribute T
rackDefaultList trackDefaults; |
76 }; | 75 }; |
77 | |
OLD | NEW |