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

Unified Diff: Source/core/dom/custom/CustomElementMicrotaskResolutionStep.h

Issue 1219063013: Fix virtual/override/final usage in Source/core/dom/. (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
Index: Source/core/dom/custom/CustomElementMicrotaskResolutionStep.h
diff --git a/Source/core/dom/custom/CustomElementMicrotaskResolutionStep.h b/Source/core/dom/custom/CustomElementMicrotaskResolutionStep.h
index 9e7b387ab4e95aa92492409d7c0d549c1727681a..52e1ab545312dfd72cb8d17c14f7c874850b150b 100644
--- a/Source/core/dom/custom/CustomElementMicrotaskResolutionStep.h
+++ b/Source/core/dom/custom/CustomElementMicrotaskResolutionStep.h
@@ -48,17 +48,17 @@ class CustomElementMicrotaskResolutionStep : public CustomElementMicrotaskStep {
public:
static PassOwnPtrWillBeRawPtr<CustomElementMicrotaskResolutionStep> create(PassRefPtrWillBeRawPtr<CustomElementRegistrationContext>, PassRefPtrWillBeRawPtr<Element>, const CustomElementDescriptor&);
- virtual ~CustomElementMicrotaskResolutionStep();
+ ~CustomElementMicrotaskResolutionStep() override;
DECLARE_VIRTUAL_TRACE();
private:
CustomElementMicrotaskResolutionStep(PassRefPtrWillBeRawPtr<CustomElementRegistrationContext>, PassRefPtrWillBeRawPtr<Element>, const CustomElementDescriptor&);
- virtual Result process() override;
+ Result process() override;
#if !defined(NDEBUG)
- virtual void show(unsigned indent) override;
+ void show(unsigned indent) override;
#endif
RefPtrWillBeMember<CustomElementRegistrationContext> m_context;
« no previous file with comments | « Source/core/dom/custom/CustomElementMicrotaskImportStep.h ('k') | Source/core/dom/custom/CustomElementUpgradeCandidateMap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698