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