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

Unified Diff: modules/mediasource/SourceBuffer.idl

Issue 23014006: Roll IDL to multivm@1350 (Closed) Base URL: https://dart.googlecode.com/svn/third_party/WebCore
Patch Set: Created 7 years, 4 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/indexeddb/IDBTransaction.idl ('k') | modules/mediastream/MediaStream.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 5099e0d6c9c997328a94549b3458b7d0ddb99ea8..f254f032367312d103e8f99361467d52919bdb78 100644
--- a/modules/mediasource/SourceBuffer.idl
+++ b/modules/mediasource/SourceBuffer.idl
@@ -42,11 +42,18 @@
// Applies an offset to media segment timestamps.
[SetterRaisesException] attribute double timestampOffset;
+ // Presentation timestamp for the start of append window.
+ [SetterRaisesException] attribute double appendWindowStart;
+
+ // Presentation timestamp for the end of append window.
+ [SetterRaisesException] attribute double appendWindowEnd;
+
// Append segment data.
[RaisesException] void appendBuffer(ArrayBuffer data);
[RaisesException] void appendBuffer(ArrayBufferView data);
// Abort the current segment append sequence.
[RaisesException] void abort();
+ [RaisesException] void remove(double start, double end);
};
« no previous file with comments | « modules/indexeddb/IDBTransaction.idl ('k') | modules/mediastream/MediaStream.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698