| Index: third_party/WebKit/Source/core/events/InputEvent.h
 | 
| diff --git a/third_party/WebKit/Source/core/events/InputEvent.h b/third_party/WebKit/Source/core/events/InputEvent.h
 | 
| index f6c46ae58d23d1c655b4c72059353d8d97b9a273..cff834d40a944ea663a8038571e4714a4c2bd854 100644
 | 
| --- a/third_party/WebKit/Source/core/events/InputEvent.h
 | 
| +++ b/third_party/WebKit/Source/core/events/InputEvent.h
 | 
| @@ -14,14 +14,14 @@ class InputEvent final : public UIEvent {
 | 
|      DEFINE_WRAPPERTYPEINFO();
 | 
|  
 | 
|  public:
 | 
| -    static PassRefPtrWillBeRawPtr<InputEvent> create()
 | 
| +    static RawPtr<InputEvent> create()
 | 
|      {
 | 
|          return adoptRefWillBeNoop(new InputEvent);
 | 
|      }
 | 
|  
 | 
| -    static PassRefPtrWillBeRawPtr<InputEvent> create(const AtomicString& type, const InputEventInit& initializer)
 | 
| +    static RawPtr<InputEvent> create(const AtomicString& type, const InputEventInit& initializer)
 | 
|      {
 | 
| -        return adoptRefWillBeNoop(new InputEvent(type, initializer));
 | 
| +        return new InputEvent(type, initializer);
 | 
|      }
 | 
|  
 | 
|      bool isInputEvent() const override;
 | 
| 
 |