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