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

Unified Diff: Source/WebCore/dom/ErrorEvent.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/dom/EntityReference.cpp ('k') | Source/WebCore/dom/Event.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/dom/ErrorEvent.cpp
diff --git a/Source/WebCore/dom/ErrorEvent.cpp b/Source/WebCore/dom/ErrorEvent.cpp
index 42c44fe24d96600cf98cf96f4b3b13f336fa337d..13f7ec61963b8cc2f6d98ad7513dff3327409a12 100644
--- a/Source/WebCore/dom/ErrorEvent.cpp
+++ b/Source/WebCore/dom/ErrorEvent.cpp
@@ -44,6 +44,7 @@ ErrorEventInit::ErrorEventInit()
ErrorEvent::ErrorEvent()
{
+ ScriptWrappable::init(this);
}
ErrorEvent::ErrorEvent(const AtomicString& type, const ErrorEventInit& initializer)
@@ -52,6 +53,7 @@ ErrorEvent::ErrorEvent(const AtomicString& type, const ErrorEventInit& initializ
, m_fileName(initializer.filename)
, m_lineNumber(initializer.lineno)
{
+ ScriptWrappable::init(this);
}
ErrorEvent::ErrorEvent(const String& message, const String& fileName, unsigned lineNumber)
@@ -60,6 +62,7 @@ ErrorEvent::ErrorEvent(const String& message, const String& fileName, unsigned l
, m_fileName(fileName)
, m_lineNumber(lineNumber)
{
+ ScriptWrappable::init(this);
}
ErrorEvent::~ErrorEvent()
« no previous file with comments | « Source/WebCore/dom/EntityReference.cpp ('k') | Source/WebCore/dom/Event.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698