| Index: third_party/WebKit/Source/modules/peerconnection/RTCDataChannelEvent.h
 | 
| diff --git a/third_party/WebKit/Source/modules/peerconnection/RTCDataChannelEvent.h b/third_party/WebKit/Source/modules/peerconnection/RTCDataChannelEvent.h
 | 
| index 1fe7f5879317f6022fc6679ec75f32278d03b18f..d3d1bea2d194b5705e4423a5f5656c6e5fc64f47 100644
 | 
| --- a/third_party/WebKit/Source/modules/peerconnection/RTCDataChannelEvent.h
 | 
| +++ b/third_party/WebKit/Source/modules/peerconnection/RTCDataChannelEvent.h
 | 
| @@ -36,7 +36,6 @@ class RTCDataChannelEvent final : public Event {
 | 
|  public:
 | 
|      ~RTCDataChannelEvent() override;
 | 
|  
 | 
| -    static RTCDataChannelEvent* create();
 | 
|      static RTCDataChannelEvent* create(const AtomicString& type, bool canBubble, bool cancelable, RTCDataChannel*);
 | 
|  
 | 
|      RTCDataChannel* channel() const;
 | 
| @@ -46,7 +45,6 @@ public:
 | 
|      DECLARE_VIRTUAL_TRACE();
 | 
|  
 | 
|  private:
 | 
| -    RTCDataChannelEvent();
 | 
|      RTCDataChannelEvent(const AtomicString& type, bool canBubble, bool cancelable, RTCDataChannel*);
 | 
|  
 | 
|      Member<RTCDataChannel> m_channel;
 | 
| 
 |