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

Unified Diff: Source/core/editing/InsertIntoTextNodeCommand.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/InsertIntoTextNodeCommand.h
diff --git a/Source/core/editing/InsertIntoTextNodeCommand.h b/Source/core/editing/InsertIntoTextNodeCommand.h
index d1eee0c13b2d7cc032ef210abe51c0d7e28efbad..3f7f4cfbca3fcba28b121d0c685c44c7e4d94c6b 100644
--- a/Source/core/editing/InsertIntoTextNodeCommand.h
+++ b/Source/core/editing/InsertIntoTextNodeCommand.h
@@ -44,8 +44,8 @@ public:
private:
InsertIntoTextNodeCommand(PassRefPtrWillBeRawPtr<Text> node, unsigned offset, const String& text);
- virtual void doApply() override;
- virtual void doUnapply() override;
+ void doApply() override;
+ void doUnapply() override;
RefPtrWillBeMember<Text> m_node;
unsigned m_offset;

Powered by Google App Engine
This is Rietveld 408576698