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