| Index: modules/mediasource/SourceBuffer.idl
|
| diff --git a/modules/mediasource/SourceBuffer.idl b/modules/mediasource/SourceBuffer.idl
|
| index 9498095fca4043522fca136541ec38c01e10e15f..e2712bdb9ad31a46fb5bdac9d676e24e60ff0b98 100644
|
| --- a/modules/mediasource/SourceBuffer.idl
|
| +++ b/modules/mediasource/SourceBuffer.idl
|
| @@ -37,22 +37,22 @@
|
| readonly attribute boolean updating;
|
|
|
| // Returns the time ranges buffered.
|
| - [GetterRaisesException] readonly attribute TimeRanges buffered;
|
| + [RaisesException=Getter] readonly attribute TimeRanges buffered;
|
|
|
| // Applies an offset to media segment timestamps.
|
| - [SetterRaisesException] attribute double timestampOffset;
|
| + [RaisesException=Setter] attribute double timestampOffset;
|
|
|
| // Presentation timestamp for the start of append window.
|
| - [SetterRaisesException] attribute double appendWindowStart;
|
| + [RaisesException=Setter] attribute double appendWindowStart;
|
|
|
| // Presentation timestamp for the end of append window.
|
| - [SetterRaisesException] attribute double appendWindowEnd;
|
| + [RaisesException=Setter] attribute double appendWindowEnd;
|
|
|
| // Append segment data.
|
| [RaisesException] void appendBuffer(ArrayBuffer data);
|
| [RaisesException] void appendBuffer(ArrayBufferView data);
|
|
|
| - [RaisesException, RuntimeEnabled=stream] void appendStream(Stream stream, optional unsigned long long maxSize);
|
| + [RaisesException, RuntimeEnabled=Stream] void appendStream(Stream stream, optional unsigned long long maxSize);
|
|
|
| // Abort the current segment append sequence.
|
| [RaisesException] void abort();
|
|
|