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

Unified Diff: public/web/WebDateTimeChooserParams.h

Issue 62083004: Transfer date/time value to the chooser as a double (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@datetime3
Patch Set: Created 7 years, 1 month 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 | « public/web/WebDateTimeChooserCompletion.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/web/WebDateTimeChooserParams.h
diff --git a/public/web/WebDateTimeChooserParams.h b/public/web/WebDateTimeChooserParams.h
index 918d636935a39270d8f33ca6e10190d89ef22b4b..2d2b3d9d2e7d097184de1cc86f53a94bfa55784a 100644
--- a/public/web/WebDateTimeChooserParams.h
+++ b/public/web/WebDateTimeChooserParams.h
@@ -41,7 +41,11 @@ struct WebDateTimeChooserParams {
// Bounding rectangle of the requester element.
WebRect anchorRectInScreen;
// The current value of the requester element.
+ // FIXME: Remove. Deprecated in favor of doubleValue.
WebString currentValue;
+ // The current value of the requester element as a double.
+ // NaN means empty value. Should not be infinity.
+ double doubleValue;
// <datalist> option values associated to the requester element. These
// values should not be shown to users. The vector size might be 0.
WebVector<WebString> suggestionValues;
« no previous file with comments | « public/web/WebDateTimeChooserCompletion.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698