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

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

Issue 23623017: Prepare for date/time input datalist support (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
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..038891075ba1463250bf7a0ee4bc19636b43c802 100644
--- a/Source/core/html/shadow/PickerIndicatorElement.h
+++ b/Source/core/html/shadow/PickerIndicatorElement.h
@@ -50,6 +50,7 @@ public:
virtual ~PickerIndicatorOwner() { }
virtual bool isPickerIndicatorOwnerDisabledOrReadOnly() const = 0;
virtual void pickerIndicatorChooseValue(const String&) = 0;
+ virtual void pickerIndicatorChooseValue(double) = 0;
virtual bool setupDateTimeChooserParameters(DateTimeChooserParameters&) = 0;
};
@@ -62,6 +63,7 @@ public:
// DateTimeChooserClient implementation.
virtual void didChooseValue(const String&) OVERRIDE;
+ virtual void didChooseValue(double) OVERRIDE;
virtual void didEndChooser() OVERRIDE;
private:

Powered by Google App Engine
This is Rietveld 408576698