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

Unified Diff: Source/platform/DateTimeChooserClient.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
Index: Source/platform/DateTimeChooserClient.h
diff --git a/Source/platform/DateTimeChooserClient.h b/Source/platform/DateTimeChooserClient.h
index 3bd10783e4f5cea167a04353776cb8a8e5b08a61..0cc3d190e35d7a92c68ba2282f0d02ffcde8bf07 100644
--- a/Source/platform/DateTimeChooserClient.h
+++ b/Source/platform/DateTimeChooserClient.h
@@ -42,6 +42,8 @@ public:
// Called when user picked a value.
virtual void didChooseValue(const String&) = 0;
+ // Called when user picked a value.
+ virtual void didChooseValue(double) = 0;
tkent 2013/11/07 19:42:07 Will you remove didChooseValue(const String&)?
keishi 2013/11/07 20:04:11 yes. Added fixme comment.
// Called when chooser has ended.
virtual void didEndChooser() = 0;
};

Powered by Google App Engine
This is Rietveld 408576698