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

Unified Diff: Source/WebCore/html/TimeRanges.idl

Issue 13454026: Update all float attributes in HTMLMediaElement and related objects to double (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Removed GTK change since the file is gone now. Created 7 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
Index: Source/WebCore/html/TimeRanges.idl
diff --git a/Source/WebCore/html/TimeRanges.idl b/Source/WebCore/html/TimeRanges.idl
index 61da093a9e18e8b54b647a939f2cb32e0e5dc3c0..99ca88271713c11aa015cb4c61dc850036c285d8 100644
--- a/Source/WebCore/html/TimeRanges.idl
+++ b/Source/WebCore/html/TimeRanges.idl
@@ -28,9 +28,9 @@
ImplementationLacksVTable
] interface TimeRanges {
readonly attribute unsigned long length;
- float start(in unsigned long index)
+ double start(in unsigned long index)
raises (DOMException);
- float end(in unsigned long index)
+ double end(in unsigned long index)
raises (DOMException);
};

Powered by Google App Engine
This is Rietveld 408576698