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

Unified Diff: Source/core/html/shadow/PickerIndicatorElement.cpp

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 | « Source/core/html/shadow/PickerIndicatorElement.h ('k') | Source/platform/DateTimeChooser.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/shadow/PickerIndicatorElement.cpp
diff --git a/Source/core/html/shadow/PickerIndicatorElement.cpp b/Source/core/html/shadow/PickerIndicatorElement.cpp
index 652c085b9dbef1a55e832cc6b2387d7d798a9638..235248b4955bec9f7f92f9d4432f22c7f16cd219 100644
--- a/Source/core/html/shadow/PickerIndicatorElement.cpp
+++ b/Source/core/html/shadow/PickerIndicatorElement.cpp
@@ -100,6 +100,12 @@ void PickerIndicatorElement::didChooseValue(const String& value)
m_pickerIndicatorOwner->pickerIndicatorChooseValue(value);
}
+void PickerIndicatorElement::didChooseValue(double value)
+{
+ if (m_pickerIndicatorOwner)
+ m_pickerIndicatorOwner->pickerIndicatorChooseValue(value);
+}
+
void PickerIndicatorElement::didEndChooser()
{
m_chooser.clear();
« no previous file with comments | « Source/core/html/shadow/PickerIndicatorElement.h ('k') | Source/platform/DateTimeChooser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698