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

Unified Diff: sky/engine/core/css/FontFaceSetLoadEvent.cpp

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/FontFaceSet.cpp ('k') | sky/engine/core/css/MediaList.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/css/FontFaceSetLoadEvent.cpp
diff --git a/sky/engine/core/css/FontFaceSetLoadEvent.cpp b/sky/engine/core/css/FontFaceSetLoadEvent.cpp
index f33bd8d41c69a2b31b23f262d453856d77085678..d7776c412ea4eaa08a0addca558b1a784d364e39 100644
--- a/sky/engine/core/css/FontFaceSetLoadEvent.cpp
+++ b/sky/engine/core/css/FontFaceSetLoadEvent.cpp
@@ -35,21 +35,18 @@ namespace blink {
FontFaceSetLoadEvent::FontFaceSetLoadEvent()
{
- ScriptWrappable::init(this);
}
FontFaceSetLoadEvent::FontFaceSetLoadEvent(const AtomicString& type, const FontFaceArray& fontfaces)
: Event(type, false, false)
, m_fontfaces(fontfaces)
{
- ScriptWrappable::init(this);
}
FontFaceSetLoadEvent::FontFaceSetLoadEvent(const AtomicString& type, const FontFaceSetLoadEventInit& initializer)
: Event(type, initializer)
, m_fontfaces(initializer.fontfaces)
{
- ScriptWrappable::init(this);
}
FontFaceSetLoadEvent::~FontFaceSetLoadEvent()
« no previous file with comments | « sky/engine/core/css/FontFaceSet.cpp ('k') | sky/engine/core/css/MediaList.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698