| Index: third_party/WebKit/Source/modules/encryptedmedia/MediaEncryptedEvent.h
 | 
| diff --git a/third_party/WebKit/Source/modules/encryptedmedia/MediaEncryptedEvent.h b/third_party/WebKit/Source/modules/encryptedmedia/MediaEncryptedEvent.h
 | 
| index 9724160bdc7193f16132aba48a60d99b51300bc9..c26b1567e0a5b77001aaaff09bfff2d3b367301d 100644
 | 
| --- a/third_party/WebKit/Source/modules/encryptedmedia/MediaEncryptedEvent.h
 | 
| +++ b/third_party/WebKit/Source/modules/encryptedmedia/MediaEncryptedEvent.h
 | 
| @@ -36,11 +36,6 @@ class MediaEncryptedEvent final : public Event {
 | 
|  public:
 | 
|      ~MediaEncryptedEvent() override;
 | 
|  
 | 
| -    static MediaEncryptedEvent* create()
 | 
| -    {
 | 
| -        return new MediaEncryptedEvent;
 | 
| -    }
 | 
| -
 | 
|      static MediaEncryptedEvent* create(const AtomicString& type, const MediaEncryptedEventInit& initializer)
 | 
|      {
 | 
|          return new MediaEncryptedEvent(type, initializer);
 | 
| @@ -54,7 +49,6 @@ public:
 | 
|      DECLARE_VIRTUAL_TRACE();
 | 
|  
 | 
|  private:
 | 
| -    MediaEncryptedEvent();
 | 
|      MediaEncryptedEvent(const AtomicString& type, const MediaEncryptedEventInit& initializer);
 | 
|  
 | 
|      String m_initDataType;
 | 
| 
 |