| Index: third_party/WebKit/Source/modules/background_sync/SyncEvent.h
 | 
| diff --git a/third_party/WebKit/Source/modules/background_sync/SyncEvent.h b/third_party/WebKit/Source/modules/background_sync/SyncEvent.h
 | 
| index 867e07b95a0dabe76df992c49a75550f93d3c2f7..0223909da29e43b393fce21a24f0d79f241ee424 100644
 | 
| --- a/third_party/WebKit/Source/modules/background_sync/SyncEvent.h
 | 
| +++ b/third_party/WebKit/Source/modules/background_sync/SyncEvent.h
 | 
| @@ -17,10 +17,6 @@ namespace blink {
 | 
|  class MODULES_EXPORT SyncEvent final : public ExtendableEvent {
 | 
|      DEFINE_WRAPPERTYPEINFO();
 | 
|  public:
 | 
| -    static SyncEvent* create()
 | 
| -    {
 | 
| -        return new SyncEvent;
 | 
| -    }
 | 
|      static SyncEvent* create(const AtomicString& type, const String& tag, bool lastChance, WaitUntilObserver* observer)
 | 
|      {
 | 
|          return new SyncEvent(type, tag, lastChance, observer);
 | 
| @@ -40,7 +36,6 @@ public:
 | 
|      DECLARE_VIRTUAL_TRACE();
 | 
|  
 | 
|  private:
 | 
| -    SyncEvent();
 | 
|      SyncEvent(const AtomicString& type, const String&, bool, WaitUntilObserver*);
 | 
|      SyncEvent(const AtomicString& type, const SyncEventInit&);
 | 
|  
 | 
| 
 |