| Index: third_party/WebKit/Source/modules/presentation/PresentationConnectionAvailableEvent.h
 | 
| diff --git a/third_party/WebKit/Source/modules/presentation/PresentationConnectionAvailableEvent.h b/third_party/WebKit/Source/modules/presentation/PresentationConnectionAvailableEvent.h
 | 
| index 33f9adf71b8e4d4cead8ddb05834eb629cef7cf7..9e284a5d4cbb96728a45cbefff8e61b2fd7ef927 100644
 | 
| --- a/third_party/WebKit/Source/modules/presentation/PresentationConnectionAvailableEvent.h
 | 
| +++ b/third_party/WebKit/Source/modules/presentation/PresentationConnectionAvailableEvent.h
 | 
| @@ -21,10 +21,6 @@ class PresentationConnectionAvailableEvent final : public Event {
 | 
|  public:
 | 
|      ~PresentationConnectionAvailableEvent() override;
 | 
|  
 | 
| -    static PresentationConnectionAvailableEvent* create()
 | 
| -    {
 | 
| -        return new PresentationConnectionAvailableEvent;
 | 
| -    }
 | 
|      static PresentationConnectionAvailableEvent* create(const AtomicString& eventType, PresentationConnection* connection)
 | 
|      {
 | 
|          return new PresentationConnectionAvailableEvent(eventType, connection);
 | 
| @@ -41,7 +37,6 @@ public:
 | 
|      DECLARE_VIRTUAL_TRACE();
 | 
|  
 | 
|  private:
 | 
| -    PresentationConnectionAvailableEvent();
 | 
|      PresentationConnectionAvailableEvent(const AtomicString& eventType, PresentationConnection*);
 | 
|      PresentationConnectionAvailableEvent(const AtomicString& eventType, const PresentationConnectionAvailableEventInit& initializer);
 | 
|  
 | 
| 
 |