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

Unified Diff: Source/modules/mediasource/SourceBuffer.idl

Issue 265753003: Add support for type checking of floating point attributes (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 8 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 | « Source/modules/mediasource/SourceBuffer.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/mediasource/SourceBuffer.idl
diff --git a/Source/modules/mediasource/SourceBuffer.idl b/Source/modules/mediasource/SourceBuffer.idl
index 1272771cac3f980fe823627b57048461783bc8d8..70d1f334dcceb9aa32e9b3f6a2c274a1db3ffbf2 100644
--- a/Source/modules/mediasource/SourceBuffer.idl
+++ b/Source/modules/mediasource/SourceBuffer.idl
@@ -28,15 +28,17 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+// https://dvcs.w3.org/hg/html-media/raw-file/tip/media-source/media-source.html#idl-def-SourceBuffer
+
enum AppendMode {
"segments",
"sequence"
};
[
- NoInterfaceObject,
ActiveDOMObject,
- RuntimeEnabled=MediaSource
+ NoInterfaceObject,
+ RuntimeEnabled=MediaSource,
] interface SourceBuffer : EventTarget {
// Gets or sets the AppendMode.
@@ -49,13 +51,13 @@ enum AppendMode {
[RaisesException=Getter] readonly attribute TimeRanges buffered;
// Applies an offset to media segment timestamps.
- [RaisesException=Setter] attribute double timestampOffset;
+ [RaisesException=Setter, TypeChecking=Unrestricted] attribute double timestampOffset;
// Presentation timestamp for the start of append window.
- [RaisesException=Setter] attribute double appendWindowStart;
+ [RaisesException=Setter, TypeChecking=Unrestricted] attribute double appendWindowStart;
// Presentation timestamp for the end of append window.
- [RaisesException=Setter] attribute double appendWindowEnd;
+ [RaisesException=Setter, TypeChecking=Unrestricted] attribute unrestricted double appendWindowEnd;
haraken 2014/05/01 03:25:58 I'm a bit confused. What's the difference between:
Nils Barth (inactive) 2014/05/01 03:34:26 Behavior-wise, currently only: [TypeChecking=Unres
// Append segment data.
[RaisesException] void appendBuffer(ArrayBuffer data);
« no previous file with comments | « Source/modules/mediasource/SourceBuffer.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698