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

Unified Diff: Source/core/editing/SetNodeAttributeCommand.h

Issue 616603006: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/editing (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased the patch 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/editing/ReplaceSelectionCommand.cpp ('k') | Source/core/editing/SimplifyMarkupCommand.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/editing/SetNodeAttributeCommand.h
diff --git a/Source/core/editing/SetNodeAttributeCommand.h b/Source/core/editing/SetNodeAttributeCommand.h
index 59eb6e4eccb7b5bd850e2b1fcf4ae5f4ea819e57..b36dd40f3b81800f4b8d640d5f02316e0503fa52 100644
--- a/Source/core/editing/SetNodeAttributeCommand.h
+++ b/Source/core/editing/SetNodeAttributeCommand.h
@@ -31,20 +31,20 @@
namespace blink {
-class SetNodeAttributeCommand FINAL : public SimpleEditCommand {
+class SetNodeAttributeCommand final : public SimpleEditCommand {
public:
static PassRefPtrWillBeRawPtr<SetNodeAttributeCommand> create(PassRefPtrWillBeRawPtr<Element> element, const QualifiedName& attribute, const AtomicString& value)
{
return adoptRefWillBeNoop(new SetNodeAttributeCommand(element, attribute, value));
}
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
SetNodeAttributeCommand(PassRefPtrWillBeRawPtr<Element>, const QualifiedName& attribute, const AtomicString& value);
- virtual void doApply() OVERRIDE;
- virtual void doUnapply() OVERRIDE;
+ virtual void doApply() override;
+ virtual void doUnapply() override;
RefPtrWillBeMember<Element> m_element;
QualifiedName m_attribute;
« no previous file with comments | « Source/core/editing/ReplaceSelectionCommand.cpp ('k') | Source/core/editing/SimplifyMarkupCommand.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698