X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fthird_party%2FWebKit%2FSource%2Fcore%2Fhtml%2Fcanvas%2FWebGLContextEvent.cpp;h=bceb93f829b53a95b0f4047d11dbe69a791504e4;hb=3545e9f2671f595d2a2f3ee75ca0393b01e35ef6;hp=3afae4de0e5c6d4912a4ca4c7b1633fd2a1a317d;hpb=7d210d4c7e9ba36e635eabc5b5780495f8a63292;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/third_party/WebKit/Source/core/html/canvas/WebGLContextEvent.cpp b/src/third_party/WebKit/Source/core/html/canvas/WebGLContextEvent.cpp index 3afae4d..bceb93f 100644 --- a/src/third_party/WebKit/Source/core/html/canvas/WebGLContextEvent.cpp +++ b/src/third_party/WebKit/Source/core/html/canvas/WebGLContextEvent.cpp @@ -34,21 +34,18 @@ WebGLContextEventInit::WebGLContextEventInit() WebGLContextEvent::WebGLContextEvent() { - ScriptWrappable::init(this); } WebGLContextEvent::WebGLContextEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& statusMessage) : Event(type, canBubble, cancelable) , m_statusMessage(statusMessage) { - ScriptWrappable::init(this); } WebGLContextEvent::WebGLContextEvent(const AtomicString& type, const WebGLContextEventInit& initializer) : Event(type, initializer) , m_statusMessage(initializer.statusMessage) { - ScriptWrappable::init(this); } WebGLContextEvent::~WebGLContextEvent()