| Index: Source/core/html/forms/URLInputType.h
|
| diff --git a/Source/core/html/forms/URLInputType.h b/Source/core/html/forms/URLInputType.h
|
| index 9e874ee7514031e2568800c44b30eb6011b0a214..df2b4ba70f533102cfae212ef8e0b3665294704e 100644
|
| --- a/Source/core/html/forms/URLInputType.h
|
| +++ b/Source/core/html/forms/URLInputType.h
|
| @@ -35,17 +35,17 @@
|
|
|
| namespace blink {
|
|
|
| -class URLInputType FINAL : public BaseTextInputType {
|
| +class URLInputType final : public BaseTextInputType {
|
| public:
|
| static PassRefPtrWillBeRawPtr<InputType> create(HTMLInputElement&);
|
|
|
| private:
|
| URLInputType(HTMLInputElement& element) : BaseTextInputType(element) { }
|
| - virtual void countUsage() OVERRIDE;
|
| - virtual const AtomicString& formControlType() const OVERRIDE;
|
| - virtual bool typeMismatchFor(const String&) const OVERRIDE;
|
| - virtual bool typeMismatch() const OVERRIDE;
|
| - virtual String typeMismatchText() const OVERRIDE;
|
| + virtual void countUsage() override;
|
| + virtual const AtomicString& formControlType() const override;
|
| + virtual bool typeMismatchFor(const String&) const override;
|
| + virtual bool typeMismatch() const override;
|
| + virtual String typeMismatchText() const override;
|
| };
|
|
|
| } // namespace blink
|
|
|