| 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 063cf9d885c1242dd0e7229c3ecc6850e3af0b44..5e8a87c701732ebf8275d0343bd206d0e73b83f3 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:
|
|
|