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

Unified Diff: Source/WebCore/html/canvas/WebGLContextEvent.cpp

Issue 13814002: First part of work to move V8 binding integrity off of vtables. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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
Index: Source/WebCore/html/canvas/WebGLContextEvent.cpp
diff --git a/Source/WebCore/html/canvas/WebGLContextEvent.cpp b/Source/WebCore/html/canvas/WebGLContextEvent.cpp
index 3351a4b085096decf0b86b614ee75c0137aeb7d4..94878e4f24c1e16a7c71cb512917feeb77068507 100644
--- a/Source/WebCore/html/canvas/WebGLContextEvent.cpp
+++ b/Source/WebCore/html/canvas/WebGLContextEvent.cpp
@@ -36,18 +36,21 @@ 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()
« no previous file with comments | « Source/WebCore/html/canvas/CanvasRenderingContext2D.cpp ('k') | Source/WebCore/html/canvas/WebGLRenderingContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698