| 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 79294ab74881748b598b298f37ac30e7c986c772..43d4804ac22ca045ea976dc9c2c251320f23dce7 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:
|
|
|