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

Unified Diff: Source/core/editing/SplitElementCommand.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/SplitElementCommand.h
diff --git a/Source/core/editing/SplitElementCommand.h b/Source/core/editing/SplitElementCommand.h
index 913ddbe100774b4fe2ff6cdd0fe9b7d637af076c..cccdfeea588002fb29b60cb0b63b4916469c3bf8 100644
--- a/Source/core/editing/SplitElementCommand.h
+++ b/Source/core/editing/SplitElementCommand.h
@@ -42,9 +42,9 @@ public:
private:
SplitElementCommand(PassRefPtrWillBeRawPtr<Element>, PassRefPtrWillBeRawPtr<Node> splitPointChild);
- virtual void doApply() override;
- virtual void doUnapply() override;
- virtual void doReapply() override;
+ void doApply() override;
+ void doUnapply() override;
+ void doReapply() override;
void executeApply();
RefPtrWillBeMember<Element> m_element1;

Powered by Google App Engine
This is Rietveld 408576698