Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(238)

Unified Diff: sky/engine/core/css/MediaQueryListEvent.h

Issue 706123005: Remove nop ScriptWrappable::init calls (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sky/engine/core/css/MediaQueryList.cpp ('k') | sky/engine/core/css/StyleMedia.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « sky/engine/core/css/MediaQueryList.cpp ('k') | sky/engine/core/css/StyleMedia.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698