| Index: third_party/WebKit/Source/modules/peerconnection/RTCIceCandidateEvent.h
 | 
| diff --git a/third_party/WebKit/Source/modules/peerconnection/RTCIceCandidateEvent.h b/third_party/WebKit/Source/modules/peerconnection/RTCIceCandidateEvent.h
 | 
| index c201ed7f357e3033c4282494062aeb6c08eb6c42..70e01a766936de38aa99f7f59bb9d39ac3b92c9f 100644
 | 
| --- a/third_party/WebKit/Source/modules/peerconnection/RTCIceCandidateEvent.h
 | 
| +++ b/third_party/WebKit/Source/modules/peerconnection/RTCIceCandidateEvent.h
 | 
| @@ -36,7 +36,6 @@ class RTCIceCandidateEvent final : public Event {
 | 
|  public:
 | 
|      ~RTCIceCandidateEvent() override;
 | 
|  
 | 
| -    static RTCIceCandidateEvent* create();
 | 
|      static RTCIceCandidateEvent* create(bool canBubble, bool cancelable, RTCIceCandidate*);
 | 
|  
 | 
|      RTCIceCandidate* candidate() const;
 | 
| @@ -46,7 +45,6 @@ public:
 | 
|      DECLARE_VIRTUAL_TRACE();
 | 
|  
 | 
|  private:
 | 
| -    RTCIceCandidateEvent();
 | 
|      RTCIceCandidateEvent(bool canBubble, bool cancelable, RTCIceCandidate*);
 | 
|  
 | 
|      Member<RTCIceCandidate> m_candidate;
 | 
| 
 |