| Index: third_party/WebKit/Source/core/editing/commands/InsertLineBreakCommand.h
|
| diff --git a/third_party/WebKit/Source/core/editing/commands/InsertLineBreakCommand.h b/third_party/WebKit/Source/core/editing/commands/InsertLineBreakCommand.h
|
| index cd5296f3a911203c24ac83c21ed5435680a053e6..204b425f3378ea9b66206273b22cd6b6c69f47ba 100644
|
| --- a/third_party/WebKit/Source/core/editing/commands/InsertLineBreakCommand.h
|
| +++ b/third_party/WebKit/Source/core/editing/commands/InsertLineBreakCommand.h
|
| @@ -32,9 +32,9 @@ namespace blink {
|
|
|
| class InsertLineBreakCommand final : public CompositeEditCommand {
|
| public:
|
| - static PassRefPtrWillBeRawPtr<InsertLineBreakCommand> create(Document& document)
|
| + static RawPtr<InsertLineBreakCommand> create(Document& document)
|
| {
|
| - return adoptRefWillBeNoop(new InsertLineBreakCommand(document));
|
| + return (new InsertLineBreakCommand(document));
|
| }
|
|
|
| private:
|
|
|