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

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

Issue 1218293014: Fix virtual/override/final usage in Source/core/editing/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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/editing/InsertNodeBeforeCommand.h
diff --git a/Source/core/editing/InsertNodeBeforeCommand.h b/Source/core/editing/InsertNodeBeforeCommand.h
index 7538af98b4463e5ead36265976e3a7a54c112dc0..b6c97838e9b134794d86e461164b26d923a352ab 100644
--- a/Source/core/editing/InsertNodeBeforeCommand.h
+++ b/Source/core/editing/InsertNodeBeforeCommand.h
@@ -43,8 +43,8 @@ public:
private:
InsertNodeBeforeCommand(PassRefPtrWillBeRawPtr<Node> childToInsert, PassRefPtrWillBeRawPtr<Node> childToInsertBefore, ShouldAssumeContentIsAlwaysEditable);
- virtual void doApply() override;
- virtual void doUnapply() override;
+ void doApply() override;
+ void doUnapply() override;
RefPtrWillBeMember<Node> m_insertChild;
RefPtrWillBeMember<Node> m_refChild;

Powered by Google App Engine
This is Rietveld 408576698