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

Unified Diff: Source/core/editing/SplitElementCommand.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/SpellChecker.h ('k') | Source/core/editing/SplitTextNodeCommand.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/editing/SplitElementCommand.h
diff --git a/Source/core/editing/SplitElementCommand.h b/Source/core/editing/SplitElementCommand.h
index 91d84c9681442c2d39cb84171ae53138304d6a23..29d2627bce859855c4ab5cdabe18c924d299405b 100644
--- a/Source/core/editing/SplitElementCommand.h
+++ b/Source/core/editing/SplitElementCommand.h
@@ -30,21 +30,21 @@
namespace blink {
-class SplitElementCommand FINAL : public SimpleEditCommand {
+class SplitElementCommand final : public SimpleEditCommand {
public:
static PassRefPtrWillBeRawPtr<SplitElementCommand> create(PassRefPtrWillBeRawPtr<Element> element, PassRefPtrWillBeRawPtr<Node> splitPointChild)
{
return adoptRefWillBeNoop(new SplitElementCommand(element, splitPointChild));
}
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
SplitElementCommand(PassRefPtrWillBeRawPtr<Element>, PassRefPtrWillBeRawPtr<Node> splitPointChild);
- virtual void doApply() OVERRIDE;
- virtual void doUnapply() OVERRIDE;
- virtual void doReapply() OVERRIDE;
+ virtual void doApply() override;
+ virtual void doUnapply() override;
+ virtual void doReapply() override;
void executeApply();
RefPtrWillBeMember<Element> m_element1;
« no previous file with comments | « Source/core/editing/SpellChecker.h ('k') | Source/core/editing/SplitTextNodeCommand.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698