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

Unified Diff: Source/WebCore/css/CSSFontFaceLoadEvent.cpp

Issue 13814002: First part of work to move V8 binding integrity off of vtables. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 months 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 | « Source/WebCore/bindings/v8/ScriptWrappable.h ('k') | Source/WebCore/css/CSSStyleDeclaration.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/css/CSSFontFaceLoadEvent.cpp
diff --git a/Source/WebCore/css/CSSFontFaceLoadEvent.cpp b/Source/WebCore/css/CSSFontFaceLoadEvent.cpp
index fd1b53b2e1e2c9931a27efebc6473f14e38fda9f..1369044cd46c9c65a7fb633118b785f0077397eb 100644
--- a/Source/WebCore/css/CSSFontFaceLoadEvent.cpp
+++ b/Source/WebCore/css/CSSFontFaceLoadEvent.cpp
@@ -37,6 +37,7 @@ namespace WebCore {
CSSFontFaceLoadEvent::CSSFontFaceLoadEvent()
{
+ ScriptWrappable::init(this);
}
CSSFontFaceLoadEvent::CSSFontFaceLoadEvent(const AtomicString& type, PassRefPtr<CSSFontFaceRule> fontface, PassRefPtr<DOMError> error)
@@ -44,6 +45,7 @@ CSSFontFaceLoadEvent::CSSFontFaceLoadEvent(const AtomicString& type, PassRefPtr<
, m_fontface(fontface)
, m_error(error)
{
+ ScriptWrappable::init(this);
}
CSSFontFaceLoadEvent::CSSFontFaceLoadEvent(const AtomicString& type, const CSSFontFaceLoadEventInit& initializer)
@@ -51,6 +53,7 @@ CSSFontFaceLoadEvent::CSSFontFaceLoadEvent(const AtomicString& type, const CSSFo
, m_fontface(initializer.fontface)
, m_error(initializer.error)
{
+ ScriptWrappable::init(this);
}
CSSFontFaceLoadEvent::~CSSFontFaceLoadEvent()
« no previous file with comments | « Source/WebCore/bindings/v8/ScriptWrappable.h ('k') | Source/WebCore/css/CSSStyleDeclaration.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698