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

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

Issue 1219013005: Fix virtual/override/final usage in Source/core/html/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 months 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
« no previous file with comments | « Source/core/html/shadow/DateTimeEditElement.cpp ('k') | Source/core/html/shadow/DateTimeFieldElements.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/shadow/DateTimeFieldElement.h
diff --git a/Source/core/html/shadow/DateTimeFieldElement.h b/Source/core/html/shadow/DateTimeFieldElement.h
index 3ec8b9fe361ad79dee86db4e365357322ebeee09..ad2821a21fc193c5dba0dc8c944d92a3eb16707c 100644
--- a/Source/core/html/shadow/DateTimeFieldElement.h
+++ b/Source/core/html/shadow/DateTimeFieldElement.h
@@ -62,7 +62,7 @@ public:
virtual void fieldDidChangeValueByKeyboard() = 0;
};
- virtual void defaultEventHandler(Event*) override;
+ void defaultEventHandler(Event*) override;
virtual bool hasValue() const = 0;
bool isDisabled() const;
virtual float maximumWidth(const Font&);
@@ -91,14 +91,14 @@ protected:
virtual int valueForARIAValueNow() const;
// Node functions.
- virtual void setFocus(bool) override;
+ void setFocus(bool) override;
private:
void defaultKeyboardEventHandler(KeyboardEvent*);
- virtual bool isDateTimeFieldElement() const override final;
+ bool isDateTimeFieldElement() const final;
bool isFieldOwnerDisabled() const;
bool isFieldOwnerReadOnly() const;
- virtual bool supportsFocus() const override final;
+ bool supportsFocus() const final;
RawPtrWillBeMember<FieldOwner> m_fieldOwner;
};
« no previous file with comments | « Source/core/html/shadow/DateTimeEditElement.cpp ('k') | Source/core/html/shadow/DateTimeFieldElements.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698