| 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 d83fdcd48f2c2dd209d666f85afa2eea3f7c4d47..04494a2318d263015967d1e9e216af54977b2922 100644
|
| --- a/third_party/WebKit/Source/core/editing/commands/InsertTextCommand.h
|
| +++ b/third_party/WebKit/Source/core/editing/commands/InsertTextCommand.h
|
| @@ -37,10 +37,10 @@ public:
|
| RebalanceAllWhitespaces
|
| };
|
|
|
| - static PassRefPtrWillBeRawPtr<InsertTextCommand> create(Document& document, const String& text, bool selectInsertedText = false,
|
| + static RawPtr<InsertTextCommand> create(Document& document, const String& text, bool selectInsertedText = false,
|
| RebalanceType rebalanceType = RebalanceLeadingAndTrailingWhitespaces)
|
| {
|
| - return adoptRefWillBeNoop(new InsertTextCommand(document, text, selectInsertedText, rebalanceType));
|
| + return new InsertTextCommand(document, text, selectInsertedText, rebalanceType);
|
| }
|
|
|
| private:
|
|
|