| Index: third_party/WebKit/Source/core/css/MediaQueryListEvent.h
 | 
| diff --git a/third_party/WebKit/Source/core/css/MediaQueryListEvent.h b/third_party/WebKit/Source/core/css/MediaQueryListEvent.h
 | 
| index 6924bbff843b2315d526e6827fb7101bcf90ff94..c5cb8b5bef8bea08cd2e673527d084dde0f1b1dc 100644
 | 
| --- a/third_party/WebKit/Source/core/css/MediaQueryListEvent.h
 | 
| +++ b/third_party/WebKit/Source/core/css/MediaQueryListEvent.h
 | 
| @@ -14,11 +14,6 @@ namespace blink {
 | 
|  class MediaQueryListEvent final : public Event {
 | 
|      DEFINE_WRAPPERTYPEINFO();
 | 
|  public:
 | 
| -    static MediaQueryListEvent* create()
 | 
| -    {
 | 
| -        return new MediaQueryListEvent;
 | 
| -    }
 | 
| -
 | 
|      static MediaQueryListEvent* create(MediaQueryList* list)
 | 
|      {
 | 
|          return new MediaQueryListEvent(list);
 | 
| @@ -46,9 +41,6 @@ public:
 | 
|      }
 | 
|  
 | 
|  private:
 | 
| -    MediaQueryListEvent()
 | 
| -        : m_matches(false) { }
 | 
| -
 | 
|      MediaQueryListEvent(const String& media, bool matches)
 | 
|          : Event(EventTypeNames::change, false, false)
 | 
|          , m_media(media)
 | 
| 
 |