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

Unified Diff: Source/core/events/ProgressEvent.cpp

Issue 540283003: bindings: Retires ScriptWrappable::init, etc. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Addressed a review comment. Created 6 years, 3 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/core/events/PopStateEvent.cpp ('k') | Source/core/events/RelatedEvent.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/events/ProgressEvent.cpp
diff --git a/Source/core/events/ProgressEvent.cpp b/Source/core/events/ProgressEvent.cpp
index dbdefd0137ceb9af47f3131767c597e3a3ec14a3..184cc33801be175cb34b7c728020b152d0232d56 100644
--- a/Source/core/events/ProgressEvent.cpp
+++ b/Source/core/events/ProgressEvent.cpp
@@ -40,7 +40,6 @@ ProgressEvent::ProgressEvent()
, m_loaded(0)
, m_total(0)
{
- ScriptWrappable::init(this);
}
ProgressEvent::ProgressEvent(const AtomicString& type, const ProgressEventInit& initializer)
@@ -49,7 +48,6 @@ 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,7 +56,6 @@ 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/core/events/PopStateEvent.cpp ('k') | Source/core/events/RelatedEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698