| 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 5ef99640573b90c6822215d513712e7d08f03ca6..1e2e682aefaadfef16c2f95527ac4a0429f56ac2 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:
|
|
|