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

Unified Diff: Source/core/html/shadow/PickerIndicatorElement.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/core/html/shadow/PickerIndicatorElement.h
diff --git a/Source/core/html/shadow/PickerIndicatorElement.h b/Source/core/html/shadow/PickerIndicatorElement.h
index 2631c987744ee07e4afb78081cc82ed4899e3913..4f42297acd80340790ac958690d4721c602a2e4a 100644
--- a/Source/core/html/shadow/PickerIndicatorElement.h
+++ b/Source/core/html/shadow/PickerIndicatorElement.h
@@ -49,7 +49,9 @@ public:
public:
virtual ~PickerIndicatorOwner() { }
virtual bool isPickerIndicatorOwnerDisabledOrReadOnly() const = 0;
+ // FIXME: Remove. Deprecated in favor of double version.
virtual void pickerIndicatorChooseValue(const String&) = 0;
+ virtual void pickerIndicatorChooseValue(double) = 0;
virtual bool setupDateTimeChooserParameters(DateTimeChooserParameters&) = 0;
};
@@ -62,6 +64,7 @@ public:
// DateTimeChooserClient implementation.
virtual void didChooseValue(const String&) OVERRIDE;
+ virtual void didChooseValue(double) OVERRIDE;
virtual void didEndChooser() OVERRIDE;
private:
« no previous file with comments | « Source/core/html/forms/BaseMultipleFieldsDateAndTimeInputType.cpp ('k') | Source/core/html/shadow/PickerIndicatorElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698