| 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:
|
|
|