| Index: third_party/WebKit/Source/modules/app_banner/BeforeInstallPromptEvent.h
 | 
| diff --git a/third_party/WebKit/Source/modules/app_banner/BeforeInstallPromptEvent.h b/third_party/WebKit/Source/modules/app_banner/BeforeInstallPromptEvent.h
 | 
| index dcc5bbe58eb3e2eaeae768f9bc2cb6134f59e86c..403349f60b0ad88662146bc8295e0fb5b3eb3a79 100644
 | 
| --- a/third_party/WebKit/Source/modules/app_banner/BeforeInstallPromptEvent.h
 | 
| +++ b/third_party/WebKit/Source/modules/app_banner/BeforeInstallPromptEvent.h
 | 
| @@ -24,12 +24,6 @@ class BeforeInstallPromptEvent final : public Event {
 | 
|  public:
 | 
|      ~BeforeInstallPromptEvent() override;
 | 
|  
 | 
| -    // For EventModules.cpp
 | 
| -    static BeforeInstallPromptEvent* create()
 | 
| -    {
 | 
| -        return new BeforeInstallPromptEvent();
 | 
| -    }
 | 
| -
 | 
|      static BeforeInstallPromptEvent* create(const AtomicString& name, ExecutionContext* executionContext, const Vector<String>& platforms, int requestId, WebAppBannerClient* client)
 | 
|      {
 | 
|          return new BeforeInstallPromptEvent(name, executionContext, platforms, requestId, client);
 | 
| @@ -50,7 +44,6 @@ public:
 | 
|      DECLARE_VIRTUAL_TRACE();
 | 
|  
 | 
|  private:
 | 
| -    BeforeInstallPromptEvent();
 | 
|      BeforeInstallPromptEvent(const AtomicString& name, ExecutionContext*, const Vector<String>& platforms, int requestId, WebAppBannerClient*);
 | 
|      BeforeInstallPromptEvent(const AtomicString& name, const BeforeInstallPromptEventInit&);
 | 
|  
 | 
| 
 |