Chromium Code Reviews| Index: third_party/WebKit/Source/core/editing/commands/InsertTextCommand.h |
| diff --git a/third_party/WebKit/Source/core/editing/commands/InsertTextCommand.h b/third_party/WebKit/Source/core/editing/commands/InsertTextCommand.h |
| index b922761634ba937880c70fc21add94f556d91be4..7b4aafc931daeda893a136dfcdf8b00e4432f23b 100644 |
| --- a/third_party/WebKit/Source/core/editing/commands/InsertTextCommand.h |
| +++ b/third_party/WebKit/Source/core/editing/commands/InsertTextCommand.h |
| @@ -43,6 +43,8 @@ public: |
| return new InsertTextCommand(document, text, selectInsertedText, rebalanceType); |
| } |
| + String textData() const override { return m_text; }; |
|
yosin_UTC9
2016/07/06 01:20:55
nit: s/override/final/
Please move implementation
chongz
2016/07/06 23:34:32
Done.
|
| + |
| private: |
| InsertTextCommand(Document&, const String& text, bool selectInsertedText, RebalanceType); |