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

Unified Diff: Source/core/editing/SplitTextNodeCommand.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/SplitTextNodeCommand.h
diff --git a/Source/core/editing/SplitTextNodeCommand.h b/Source/core/editing/SplitTextNodeCommand.h
index cff5a18d0113354553b35d1c186dd2c074f445c8..95d3d9a57c171a15ccc2004bedbe62284096fa6b 100644
--- a/Source/core/editing/SplitTextNodeCommand.h
+++ b/Source/core/editing/SplitTextNodeCommand.h
@@ -44,9 +44,9 @@ public:
private:
SplitTextNodeCommand(PassRefPtrWillBeRawPtr<Text>, int offset);
- virtual void doApply() override;
- virtual void doUnapply() override;
- virtual void doReapply() override;
+ void doApply() override;
+ void doUnapply() override;
+ void doReapply() override;
void insertText1AndTrimText2();
RefPtrWillBeMember<Text> m_text1;

Powered by Google App Engine
This is Rietveld 408576698