| Index: third_party/WebKit/Source/modules/webmidi/MIDIInput.h
 | 
| diff --git a/third_party/WebKit/Source/modules/webmidi/MIDIInput.h b/third_party/WebKit/Source/modules/webmidi/MIDIInput.h
 | 
| index 1c780f074e5e344a416181fb94d3928c75385964..abfdff3fa8b5eaf4e26d51ebf8eb1343225a6e87 100644
 | 
| --- a/third_party/WebKit/Source/modules/webmidi/MIDIInput.h
 | 
| +++ b/third_party/WebKit/Source/modules/webmidi/MIDIInput.h
 | 
| @@ -46,7 +46,7 @@ public:
 | 
|      ~MIDIInput() override { }
 | 
|  
 | 
|      EventListener* onmidimessage();
 | 
| -    void setOnmidimessage(PassRefPtrWillBeRawPtr<EventListener>);
 | 
| +    void setOnmidimessage(RawPtr<EventListener>);
 | 
|  
 | 
|      // EventTarget
 | 
|      const AtomicString& interfaceName() const override { return EventTargetNames::MIDIInput; }
 | 
| @@ -57,7 +57,7 @@ public:
 | 
|      DECLARE_VIRTUAL_TRACE();
 | 
|  
 | 
|  protected:
 | 
| -    bool addEventListenerInternal(const AtomicString& eventType, PassRefPtrWillBeRawPtr<EventListener>, const EventListenerOptions&) override;
 | 
| +    bool addEventListenerInternal(const AtomicString& eventType, RawPtr<EventListener>, const EventListenerOptions&) override;
 | 
|  
 | 
|  private:
 | 
|      MIDIInput(MIDIAccess*, const String& id, const String& manufacturer, const String& name, const String& version, MIDIAccessor::MIDIPortState);
 | 
| 
 |