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

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

Issue 635793002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/html (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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 6966b9c67509730bafa49aa7e4571e24fc9d41c6..4c681412c8df817042df9d740ecbaa1e13d15bae 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;
+ virtual void defaultEventHandler(Event*) override;
virtual bool hasValue() const = 0;
bool isDisabled() const;
virtual float maximumWidth(const Font&);
@@ -77,7 +77,7 @@ public:
virtual void stepUp() = 0;
virtual String value() const = 0;
virtual String visibleValue() const = 0;
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
protected:
DateTimeFieldElement(Document&, FieldOwner&);
@@ -91,14 +91,14 @@ protected:
virtual int valueForARIAValueNow() const;
// Node functions.
- virtual void setFocus(bool) OVERRIDE;
+ virtual void setFocus(bool) override;
private:
void defaultKeyboardEventHandler(KeyboardEvent*);
- virtual bool isDateTimeFieldElement() const OVERRIDE FINAL;
+ virtual bool isDateTimeFieldElement() const override final;
bool isFieldOwnerDisabled() const;
bool isFieldOwnerReadOnly() const;
- virtual bool supportsFocus() const OVERRIDE FINAL;
+ virtual bool supportsFocus() const override 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