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() |