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

Unified Diff: Source/core/html/shadow/TextControlInnerElements.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/SpinButtonElement.h ('k') | Source/core/html/track/AudioTrack.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/shadow/TextControlInnerElements.h
diff --git a/Source/core/html/shadow/TextControlInnerElements.h b/Source/core/html/shadow/TextControlInnerElements.h
index 08ceb2c1f63f14dd55e17cf14391754e0b16b7c4..a7ff7ae09ed4e79dd06b9b9f7ecaa4ea0b55a660 100644
--- a/Source/core/html/shadow/TextControlInnerElements.h
+++ b/Source/core/html/shadow/TextControlInnerElements.h
@@ -32,64 +32,64 @@
namespace blink {
-class TextControlInnerContainer FINAL : public HTMLDivElement {
+class TextControlInnerContainer final : public HTMLDivElement {
public:
static PassRefPtrWillBeRawPtr<TextControlInnerContainer> create(Document&);
protected:
explicit TextControlInnerContainer(Document&);
- virtual RenderObject* createRenderer(RenderStyle*) OVERRIDE;
+ virtual RenderObject* createRenderer(RenderStyle*) override;
};
-class EditingViewPortElement FINAL : public HTMLDivElement {
+class EditingViewPortElement final : public HTMLDivElement {
public:
static PassRefPtrWillBeRawPtr<EditingViewPortElement> create(Document&);
protected:
explicit EditingViewPortElement(Document&);
- virtual PassRefPtr<RenderStyle> customStyleForRenderer() OVERRIDE;
+ virtual PassRefPtr<RenderStyle> customStyleForRenderer() override;
private:
- virtual bool supportsFocus() const OVERRIDE { return false; }
+ virtual bool supportsFocus() const override { return false; }
};
-class TextControlInnerEditorElement FINAL : public HTMLDivElement {
+class TextControlInnerEditorElement final : public HTMLDivElement {
public:
static PassRefPtrWillBeRawPtr<TextControlInnerEditorElement> create(Document&);
- virtual void defaultEventHandler(Event*) OVERRIDE;
+ virtual void defaultEventHandler(Event*) override;
private:
explicit TextControlInnerEditorElement(Document&);
- virtual RenderObject* createRenderer(RenderStyle*) OVERRIDE;
- virtual PassRefPtr<RenderStyle> customStyleForRenderer() OVERRIDE;
- virtual bool supportsFocus() const OVERRIDE { return false; }
+ virtual RenderObject* createRenderer(RenderStyle*) override;
+ virtual PassRefPtr<RenderStyle> customStyleForRenderer() override;
+ virtual bool supportsFocus() const override { return false; }
};
-class SearchFieldDecorationElement FINAL : public HTMLDivElement {
+class SearchFieldDecorationElement final : public HTMLDivElement {
public:
static PassRefPtrWillBeRawPtr<SearchFieldDecorationElement> create(Document&);
- virtual void defaultEventHandler(Event*) OVERRIDE;
- virtual bool willRespondToMouseClickEvents() OVERRIDE;
+ virtual void defaultEventHandler(Event*) override;
+ virtual bool willRespondToMouseClickEvents() override;
private:
explicit SearchFieldDecorationElement(Document&);
- virtual const AtomicString& shadowPseudoId() const OVERRIDE;
- virtual bool supportsFocus() const OVERRIDE { return false; }
+ virtual const AtomicString& shadowPseudoId() const override;
+ virtual bool supportsFocus() const override { return false; }
};
-class SearchFieldCancelButtonElement FINAL : public HTMLDivElement {
+class SearchFieldCancelButtonElement final : public HTMLDivElement {
public:
static PassRefPtrWillBeRawPtr<SearchFieldCancelButtonElement> create(Document&);
- virtual void defaultEventHandler(Event*) OVERRIDE;
- virtual bool willRespondToMouseClickEvents() OVERRIDE;
+ virtual void defaultEventHandler(Event*) override;
+ virtual bool willRespondToMouseClickEvents() override;
private:
explicit SearchFieldCancelButtonElement(Document&);
- virtual void detach(const AttachContext& = AttachContext()) OVERRIDE;
- virtual bool supportsFocus() const OVERRIDE { return false; }
+ virtual void detach(const AttachContext& = AttachContext()) override;
+ virtual bool supportsFocus() const override { return false; }
bool m_capturing;
};
« no previous file with comments | « Source/core/html/shadow/SpinButtonElement.h ('k') | Source/core/html/track/AudioTrack.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698