Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(370)

Unified Diff: modules/mediasource/SourceBuffer.idl

Issue 1660113002: Updated to Chrome 45 (2454) moved from SVN to git. Base URL: https://github.com/dart-lang/webcore.git@roll_45
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « modules/mediasource/MediaSource.idl ('k') | modules/mediasource/SourceBufferList.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: modules/mediasource/SourceBuffer.idl
diff --git a/modules/mediasource/SourceBuffer.idl b/modules/mediasource/SourceBuffer.idl
index 321daf7e491ea29a028c52def1826b0fd07a8fb1..6329078820ef0e3af0c8f6bb78cd1cf4122203e2 100644
--- a/modules/mediasource/SourceBuffer.idl
+++ b/modules/mediasource/SourceBuffer.idl
@@ -39,7 +39,7 @@ enum AppendMode {
ActiveDOMObject,
NoInterfaceObject,
RuntimeEnabled=MediaSource,
- TypeChecking=(Interface,Unrestricted),
+ TypeChecking=Interface,
] interface SourceBuffer : EventTarget {
// Gets or sets the AppendMode.
@@ -64,10 +64,14 @@ enum AppendMode {
[RaisesException] void appendBuffer(ArrayBuffer data);
[RaisesException] void appendBuffer(ArrayBufferView data);
- [RaisesException, RuntimeEnabled=Stream] void appendStream(Stream stream, optional unsigned long long maxSize);
+ [RaisesException, RuntimeEnabled=ExperimentalStream] void appendStream(Stream stream, optional unsigned long long maxSize);
// Abort the current segment append sequence.
[RaisesException] void abort();
[RaisesException] void remove(double start, unrestricted double end);
+
+ // Gets or sets the TrackDefaultList this SourceBuffer may consult during
+ // the initialization segment algorithm.
+ [RaisesException=Setter, RuntimeEnabled=MediaSourceExperimental] attribute TrackDefaultList trackDefaults;
};
« no previous file with comments | « modules/mediasource/MediaSource.idl ('k') | modules/mediasource/SourceBufferList.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698