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

Unified Diff: Source/core/events/ApplicationCacheErrorEvent.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/AnimationPlayerEvent.cpp ('k') | Source/core/events/AutocompleteErrorEvent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/events/ApplicationCacheErrorEvent.cpp
diff --git a/Source/core/events/ApplicationCacheErrorEvent.cpp b/Source/core/events/ApplicationCacheErrorEvent.cpp
index b91db686694b119f8aeec33cb5793f3b0aa12cdf..3db53a5ccc479c6da521e7d85d3331eed296134e 100644
--- a/Source/core/events/ApplicationCacheErrorEvent.cpp
+++ b/Source/core/events/ApplicationCacheErrorEvent.cpp
@@ -47,7 +47,6 @@ ApplicationCacheErrorEventInit::ApplicationCacheErrorEventInit()
ApplicationCacheErrorEvent::ApplicationCacheErrorEvent()
{
- ScriptWrappable::init(this);
}
ApplicationCacheErrorEvent::ApplicationCacheErrorEvent(blink::WebApplicationCacheHost::ErrorReason reason, const String& url, int status, const String& message)
@@ -57,7 +56,6 @@ ApplicationCacheErrorEvent::ApplicationCacheErrorEvent(blink::WebApplicationCach
, m_status(status)
, m_message(message)
{
- ScriptWrappable::init(this);
}
ApplicationCacheErrorEvent::ApplicationCacheErrorEvent(const AtomicString& eventType, const ApplicationCacheErrorEventInit& initializer)
@@ -67,7 +65,6 @@ ApplicationCacheErrorEvent::ApplicationCacheErrorEvent(const AtomicString& event
, m_status(initializer.status)
, m_message(initializer.message)
{
- ScriptWrappable::init(this);
}
ApplicationCacheErrorEvent::~ApplicationCacheErrorEvent()
« no previous file with comments | « Source/core/events/AnimationPlayerEvent.cpp ('k') | Source/core/events/AutocompleteErrorEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698