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

Unified Diff: Source/core/html/HTMLDetailsElement.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/HTMLDataListElement.h ('k') | Source/core/html/HTMLDialogElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLDetailsElement.h
diff --git a/Source/core/html/HTMLDetailsElement.h b/Source/core/html/HTMLDetailsElement.h
index e09a28aea4a3f639040c669c917597e26f2557eb..ab52fba025cd28fac4ea500b5f806cd6252c3cdc 100644
--- a/Source/core/html/HTMLDetailsElement.h
+++ b/Source/core/html/HTMLDetailsElement.h
@@ -33,7 +33,7 @@ class HTMLDetailsElement final : public HTMLElement {
public:
static PassRefPtrWillBeRawPtr<HTMLDetailsElement> create(Document&);
void toggleOpen();
- virtual ~HTMLDetailsElement();
+ ~HTMLDetailsElement() override;
void dispatchPendingEvent(DetailsEventSender*);
@@ -42,10 +42,10 @@ public:
private:
explicit HTMLDetailsElement(Document&);
- virtual LayoutObject* createLayoutObject(const ComputedStyle&) override;
- virtual void parseAttribute(const QualifiedName&, const AtomicString&) override;
- virtual void didAddUserAgentShadowRoot(ShadowRoot&) override;
- virtual bool isInteractiveContent() const override;
+ LayoutObject* createLayoutObject(const ComputedStyle&) override;
+ void parseAttribute(const QualifiedName&, const AtomicString&) override;
+ void didAddUserAgentShadowRoot(ShadowRoot&) override;
+ bool isInteractiveContent() const override;
bool m_isOpen;
};
« no previous file with comments | « Source/core/html/HTMLDataListElement.h ('k') | Source/core/html/HTMLDialogElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698