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