| Index: Source/core/html/forms/SearchInputType.h
|
| diff --git a/Source/core/html/forms/SearchInputType.h b/Source/core/html/forms/SearchInputType.h
|
| index 3a04c5fe1a1b6f17ed8f0b54a86aacb2c242573f..0691e0f5738421ec64d159bc77be37500e0a0e9a 100644
|
| --- a/Source/core/html/forms/SearchInputType.h
|
| +++ b/Source/core/html/forms/SearchInputType.h
|
| @@ -36,7 +36,7 @@
|
|
|
| namespace blink {
|
|
|
| -class SearchInputType FINAL : public BaseTextInputType {
|
| +class SearchInputType final : public BaseTextInputType {
|
| public:
|
| static PassRefPtrWillBeRawPtr<InputType> create(HTMLInputElement&);
|
|
|
| @@ -44,16 +44,16 @@ public:
|
|
|
| private:
|
| SearchInputType(HTMLInputElement&);
|
| - virtual void countUsage() OVERRIDE;
|
| - virtual RenderObject* createRenderer(RenderStyle*) const OVERRIDE;
|
| - virtual const AtomicString& formControlType() const OVERRIDE;
|
| - virtual bool shouldRespectSpeechAttribute() OVERRIDE;
|
| - virtual bool needsContainer() const OVERRIDE;
|
| - virtual void createShadowSubtree() OVERRIDE;
|
| - virtual void handleKeydownEvent(KeyboardEvent*) OVERRIDE;
|
| - virtual void didSetValueByUserEdit(ValueChangeState) OVERRIDE;
|
| - virtual bool supportsInputModeAttribute() const OVERRIDE;
|
| - virtual void updateView() OVERRIDE;
|
| + virtual void countUsage() override;
|
| + virtual RenderObject* createRenderer(RenderStyle*) const override;
|
| + virtual const AtomicString& formControlType() const override;
|
| + virtual bool shouldRespectSpeechAttribute() override;
|
| + virtual bool needsContainer() const override;
|
| + virtual void createShadowSubtree() override;
|
| + virtual void handleKeydownEvent(KeyboardEvent*) override;
|
| + virtual void didSetValueByUserEdit(ValueChangeState) override;
|
| + virtual bool supportsInputModeAttribute() const override;
|
| + virtual void updateView() override;
|
|
|
| void searchEventTimerFired(Timer<SearchInputType>*);
|
| bool searchEventsShouldBeDispatched() const;
|
|
|