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