| Index: third_party/WebKit/Source/modules/mediastream/RTCDataChannelEvent.h
 | 
| diff --git a/third_party/WebKit/Source/modules/mediastream/RTCDataChannelEvent.h b/third_party/WebKit/Source/modules/mediastream/RTCDataChannelEvent.h
 | 
| index 85dfd854ca75ff7fa9eb181f03e789d336c43b62..3f6f8a1f5ef5de376cacd9c325db17c568951f29 100644
 | 
| --- a/third_party/WebKit/Source/modules/mediastream/RTCDataChannelEvent.h
 | 
| +++ b/third_party/WebKit/Source/modules/mediastream/RTCDataChannelEvent.h
 | 
| @@ -36,8 +36,8 @@ class RTCDataChannelEvent final : public Event {
 | 
|  public:
 | 
|      ~RTCDataChannelEvent() override;
 | 
|  
 | 
| -    static PassRefPtrWillBeRawPtr<RTCDataChannelEvent> create();
 | 
| -    static PassRefPtrWillBeRawPtr<RTCDataChannelEvent> create(const AtomicString& type, bool canBubble, bool cancelable, RTCDataChannel*);
 | 
| +    static RawPtr<RTCDataChannelEvent> create();
 | 
| +    static RawPtr<RTCDataChannelEvent> create(const AtomicString& type, bool canBubble, bool cancelable, RTCDataChannel*);
 | 
|  
 | 
|      RTCDataChannel* channel() const;
 | 
|  
 | 
| @@ -49,7 +49,7 @@ private:
 | 
|      RTCDataChannelEvent();
 | 
|      RTCDataChannelEvent(const AtomicString& type, bool canBubble, bool cancelable, RTCDataChannel*);
 | 
|  
 | 
| -    PersistentWillBeMember<RTCDataChannel> m_channel;
 | 
| +    Member<RTCDataChannel> m_channel;
 | 
|  };
 | 
|  
 | 
|  } // namespace blink
 | 
| 
 |