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

Unified Diff: Source/core/editing/ReplaceSelectionCommand.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/ReplaceNodeWithSpanCommand.h ('k') | Source/core/editing/ReplaceSelectionCommand.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/editing/ReplaceSelectionCommand.h
diff --git a/Source/core/editing/ReplaceSelectionCommand.h b/Source/core/editing/ReplaceSelectionCommand.h
index 9c3d99984475a5b5d1d641abb896417ec70432b2..a58d4d63b8a89f2d5550477b664ffa26d4e838c5 100644
--- a/Source/core/editing/ReplaceSelectionCommand.h
+++ b/Source/core/editing/ReplaceSelectionCommand.h
@@ -34,7 +34,7 @@ namespace blink {
class DocumentFragment;
class ReplacementFragment;
-class ReplaceSelectionCommand FINAL : public CompositeEditCommand {
+class ReplaceSelectionCommand final : public CompositeEditCommand {
public:
enum CommandOption {
SelectReplacement = 1 << 0,
@@ -52,13 +52,13 @@ public:
return adoptRefWillBeNoop(new ReplaceSelectionCommand(document, fragment, options, action));
}
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
ReplaceSelectionCommand(Document&, PassRefPtrWillBeRawPtr<DocumentFragment>, CommandOptions, EditAction);
- virtual void doApply() OVERRIDE;
- virtual EditAction editingAction() const OVERRIDE;
+ virtual void doApply() override;
+ virtual EditAction editingAction() const override;
class InsertedNodes {
STACK_ALLOCATED();
« no previous file with comments | « Source/core/editing/ReplaceNodeWithSpanCommand.h ('k') | Source/core/editing/ReplaceSelectionCommand.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698