| Index: third_party/WebKit/Source/modules/notifications/NotificationEvent.h
 | 
| diff --git a/third_party/WebKit/Source/modules/notifications/NotificationEvent.h b/third_party/WebKit/Source/modules/notifications/NotificationEvent.h
 | 
| index 1d08014219b7ea82193f6a1abe28ef4253f4d055..d454b127b9edc9c75fb75e72d32f521856c886a5 100644
 | 
| --- a/third_party/WebKit/Source/modules/notifications/NotificationEvent.h
 | 
| +++ b/third_party/WebKit/Source/modules/notifications/NotificationEvent.h
 | 
| @@ -18,10 +18,6 @@ class NotificationEventInit;
 | 
|  class MODULES_EXPORT NotificationEvent final : public ExtendableEvent {
 | 
|      DEFINE_WRAPPERTYPEINFO();
 | 
|  public:
 | 
| -    static NotificationEvent* create()
 | 
| -    {
 | 
| -        return new NotificationEvent;
 | 
| -    }
 | 
|      static NotificationEvent* create(const AtomicString& type, const NotificationEventInit& initializer)
 | 
|      {
 | 
|          return new NotificationEvent(type, initializer);
 | 
| @@ -41,7 +37,6 @@ public:
 | 
|      DECLARE_VIRTUAL_TRACE();
 | 
|  
 | 
|  private:
 | 
| -    NotificationEvent();
 | 
|      NotificationEvent(const AtomicString& type, const NotificationEventInit&);
 | 
|      NotificationEvent(const AtomicString& type, const NotificationEventInit&, WaitUntilObserver*);
 | 
|  
 | 
| 
 |