| Index: sky/engine/core/css/MediaQueryListEvent.h
|
| diff --git a/sky/engine/core/css/MediaQueryListEvent.h b/sky/engine/core/css/MediaQueryListEvent.h
|
| index 588d7891981f1e7b7d27c541fea124e5f0e438b8..c37f4382ef05ffea8ba2252e80381838067cfaac 100644
|
| --- a/sky/engine/core/css/MediaQueryListEvent.h
|
| +++ b/sky/engine/core/css/MediaQueryListEvent.h
|
| @@ -55,7 +55,6 @@ private:
|
| MediaQueryListEvent()
|
| : m_matches(false)
|
| {
|
| - ScriptWrappable::init(this);
|
| }
|
|
|
| MediaQueryListEvent(const String& media, bool matches)
|
| @@ -63,7 +62,6 @@ private:
|
| , m_media(media)
|
| , m_matches(matches)
|
| {
|
| - ScriptWrappable::init(this);
|
| }
|
|
|
| explicit MediaQueryListEvent(MediaQueryList* list)
|
| @@ -71,7 +69,6 @@ private:
|
| , m_mediaQueryList(list)
|
| , m_matches(false)
|
| {
|
| - ScriptWrappable::init(this);
|
| }
|
|
|
| MediaQueryListEvent(const AtomicString& eventType, const MediaQueryListEventInit& initializer)
|
| @@ -79,7 +76,6 @@ private:
|
| , m_media(initializer.media)
|
| , m_matches(initializer.matches)
|
| {
|
| - ScriptWrappable::init(this);
|
| }
|
|
|
| // We have m_media/m_matches for JS-created events; we use m_mediaQueryList
|
|
|