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

Unified Diff: Source/core/dom/custom/CustomElementCallbackInvocation.cpp

Issue 611233002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/dom/custom (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased 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
Index: Source/core/dom/custom/CustomElementCallbackInvocation.cpp
diff --git a/Source/core/dom/custom/CustomElementCallbackInvocation.cpp b/Source/core/dom/custom/CustomElementCallbackInvocation.cpp
index 13360fd38cc6d1cf41785aad418eb213ad3460dd..444f39c4d3b7b05808c58a5721365e929c4c5f84 100644
--- a/Source/core/dom/custom/CustomElementCallbackInvocation.cpp
+++ b/Source/core/dom/custom/CustomElementCallbackInvocation.cpp
@@ -42,7 +42,7 @@ public:
AttachedDetachedInvocation(PassRefPtr<CustomElementLifecycleCallbacks>, CustomElementLifecycleCallbacks::CallbackType which);
private:
- virtual void dispatch(Element*) OVERRIDE;
+ virtual void dispatch(Element*) override;
CustomElementLifecycleCallbacks::CallbackType m_which;
};
@@ -73,7 +73,7 @@ public:
AttributeChangedInvocation(PassRefPtr<CustomElementLifecycleCallbacks>, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue);
private:
- virtual void dispatch(Element*) OVERRIDE;
+ virtual void dispatch(Element*) override;
AtomicString m_name;
AtomicString m_oldValue;
@@ -101,8 +101,8 @@ public:
}
private:
- virtual void dispatch(Element*) OVERRIDE;
- virtual bool isCreatedCallback() const OVERRIDE { return true; }
+ virtual void dispatch(Element*) override;
+ virtual bool isCreatedCallback() const override { return true; }
};
void CreatedInvocation::dispatch(Element* element)
« no previous file with comments | « Source/core/dom/custom/CustomElementAsyncImportMicrotaskQueue.h ('k') | Source/core/dom/custom/CustomElementDefinition.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698