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

Unified Diff: Source/core/html/HTMLOptGroupElement.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/HTMLObjectElement.h ('k') | Source/core/html/HTMLOptionElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLOptGroupElement.h
diff --git a/Source/core/html/HTMLOptGroupElement.h b/Source/core/html/HTMLOptGroupElement.h
index daec624eeb8f0152a488115e2b47ee09d42a139d..d28ebc3e0a37c96439b08d896891365feabc5a46 100644
--- a/Source/core/html/HTMLOptGroupElement.h
+++ b/Source/core/html/HTMLOptGroupElement.h
@@ -31,12 +31,12 @@ namespace blink {
class HTMLSelectElement;
class HTMLDivElement;
-class HTMLOptGroupElement FINAL : public HTMLElement {
+class HTMLOptGroupElement final : public HTMLElement {
DEFINE_WRAPPERTYPEINFO();
public:
static PassRefPtrWillBeRawPtr<HTMLOptGroupElement> create(Document&);
- virtual bool isDisabledFormControl() const OVERRIDE;
+ virtual bool isDisabledFormControl() const override;
HTMLSelectElement* ownerSelectElement() const;
String groupLabelText() const;
@@ -44,18 +44,18 @@ public:
private:
explicit HTMLOptGroupElement(Document&);
- virtual bool rendererIsFocusable() const OVERRIDE { return true; }
- virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERRIDE;
- virtual void childrenChanged(const ChildrenChange&) OVERRIDE;
- virtual void accessKeyAction(bool sendMouseEvents) OVERRIDE;
- virtual void didAddUserAgentShadowRoot(ShadowRoot&) OVERRIDE;
- virtual void attach(const AttachContext& = AttachContext()) OVERRIDE;
- virtual void detach(const AttachContext& = AttachContext()) OVERRIDE;
+ virtual bool rendererIsFocusable() const override { return true; }
+ virtual void parseAttribute(const QualifiedName&, const AtomicString&) override;
+ virtual void childrenChanged(const ChildrenChange&) override;
+ virtual void accessKeyAction(bool sendMouseEvents) override;
+ virtual void didAddUserAgentShadowRoot(ShadowRoot&) override;
+ virtual void attach(const AttachContext& = AttachContext()) override;
+ virtual void detach(const AttachContext& = AttachContext()) override;
// <optgroup> might not have a renderer so we manually manage a cached style.
void updateNonRenderStyle();
- virtual RenderStyle* nonRendererStyle() const OVERRIDE;
- virtual PassRefPtr<RenderStyle> customStyleForRenderer() OVERRIDE;
+ virtual RenderStyle* nonRendererStyle() const override;
+ virtual PassRefPtr<RenderStyle> customStyleForRenderer() override;
void updateGroupLabel();
void recalcSelectOptions();
« no previous file with comments | « Source/core/html/HTMLObjectElement.h ('k') | Source/core/html/HTMLOptionElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698