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

Unified Diff: Source/core/editing/DOMSelection.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/CreateLinkCommand.h ('k') | Source/core/editing/DeleteFromTextNodeCommand.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/editing/DOMSelection.h
diff --git a/Source/core/editing/DOMSelection.h b/Source/core/editing/DOMSelection.h
index dab592df64399e1f8eb35282c62705aad9dcdc25..0a02168ae30cd71c1a9ecf2dd44956c1a5feda14 100644
--- a/Source/core/editing/DOMSelection.h
+++ b/Source/core/editing/DOMSelection.h
@@ -47,7 +47,7 @@ class Range;
class TreeScope;
class VisibleSelection;
-class DOMSelection FINAL : public RefCountedWillBeGarbageCollected<DOMSelection>, public ScriptWrappable, public DOMWindowProperty {
+class DOMSelection final : public RefCountedWillBeGarbageCollected<DOMSelection>, public ScriptWrappable, public DOMWindowProperty {
DEFINE_WRAPPERTYPEINFO();
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(DOMSelection);
public:
@@ -96,7 +96,7 @@ public:
// Microsoft Selection Object API
void empty();
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
explicit DOMSelection(const TreeScope*);
« no previous file with comments | « Source/core/editing/CreateLinkCommand.h ('k') | Source/core/editing/DeleteFromTextNodeCommand.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698