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

Unified Diff: public/platform/WebTimeRange.h

Issue 337923006: Change WebTimeRange to use doubles instead of floats. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 6 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/platform/WebTimeRange.h
diff --git a/public/platform/WebTimeRange.h b/public/platform/WebTimeRange.h
index 0d5cb1ff71ca8a688bbca05085ec242623ed723a..a37d5b7e97bc6b529ca79a3bfe4549d7c7e56512 100644
--- a/public/platform/WebTimeRange.h
+++ b/public/platform/WebTimeRange.h
@@ -37,10 +37,10 @@ namespace blink {
struct WebTimeRange {
WebTimeRange() : start(0), end(0) { }
- WebTimeRange(float s, float e) : start(s), end(e) { }
+ WebTimeRange(double s, double e) : start(s), end(e) { }
- float start;
- float end;
+ double start;
+ double end;
};
typedef WebVector<WebTimeRange> WebTimeRanges;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698