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

Unified Diff: Source/core/events/ResourceProgressEvent.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/RelatedEvent.cpp ('k') | Source/core/events/SecurityPolicyViolationEvent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/events/ResourceProgressEvent.cpp
diff --git a/Source/core/events/ResourceProgressEvent.cpp b/Source/core/events/ResourceProgressEvent.cpp
index dec3fd3de88c1507742e0978e6b5aca1b1e92a76..49291c5b6a3af44f50b7b4215a2e460842b2f29c 100644
--- a/Source/core/events/ResourceProgressEvent.cpp
+++ b/Source/core/events/ResourceProgressEvent.cpp
@@ -31,14 +31,12 @@ namespace blink {
ResourceProgressEvent::ResourceProgressEvent()
{
- ScriptWrappable::init(this);
}
ResourceProgressEvent::ResourceProgressEvent(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total, const String& url)
: ProgressEvent(type, lengthComputable, loaded, total)
, m_url(url)
{
- ScriptWrappable::init(this);
}
const String& ResourceProgressEvent::url() const
« no previous file with comments | « Source/core/events/RelatedEvent.cpp ('k') | Source/core/events/SecurityPolicyViolationEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698