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

Unified Diff: Source/WebCore/dom/ProgressEvent.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/ProcessingInstruction.cpp ('k') | Source/WebCore/dom/PropertyNodeList.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/dom/ProgressEvent.cpp
diff --git a/Source/WebCore/dom/ProgressEvent.cpp b/Source/WebCore/dom/ProgressEvent.cpp
index fe8351bc15a017f1a73ad7d5b41ca454e315e475..2df38731b693e011126070b91da6a320af85647b 100644
--- a/Source/WebCore/dom/ProgressEvent.cpp
+++ b/Source/WebCore/dom/ProgressEvent.cpp
@@ -42,6 +42,7 @@ ProgressEvent::ProgressEvent()
, m_loaded(0)
, m_total(0)
{
+ ScriptWrappable::init(this);
}
ProgressEvent::ProgressEvent(const AtomicString& type, const ProgressEventInit& initializer)
@@ -50,6 +51,7 @@ ProgressEvent::ProgressEvent(const AtomicString& type, const ProgressEventInit&
, m_loaded(initializer.loaded)
, m_total(initializer.total)
{
+ ScriptWrappable::init(this);
}
ProgressEvent::ProgressEvent(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total)
@@ -58,6 +60,7 @@ ProgressEvent::ProgressEvent(const AtomicString& type, bool lengthComputable, un
, m_loaded(loaded)
, m_total(total)
{
+ ScriptWrappable::init(this);
}
const AtomicString& ProgressEvent::interfaceName() const
« no previous file with comments | « Source/WebCore/dom/ProcessingInstruction.cpp ('k') | Source/WebCore/dom/PropertyNodeList.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698