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

Unified Diff: Source/core/html/canvas/WebGLUniformLocation.cpp

Issue 15481002: Make WebGL objects scriptwrappable so that binding integrity checks may be applied to them. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix WebGLProgram really really. Created 7 years, 7 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/html/canvas/WebGLUniformLocation.h ('k') | Source/core/html/canvas/WebGLVertexArrayObjectOES.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/canvas/WebGLUniformLocation.cpp
diff --git a/Source/core/html/canvas/WebGLUniformLocation.cpp b/Source/core/html/canvas/WebGLUniformLocation.cpp
index d83f5e7fe01ec59f09c744fdbd45800c7afb1476..a7f14f590c7e5f1e76fcd44ad0ade557a82ed5f6 100644
--- a/Source/core/html/canvas/WebGLUniformLocation.cpp
+++ b/Source/core/html/canvas/WebGLUniformLocation.cpp
@@ -40,6 +40,7 @@ WebGLUniformLocation::WebGLUniformLocation(WebGLProgram* program, GC3Dint locati
, m_location(location)
{
ASSERT(m_program);
+ ScriptWrappable::init(this);
m_linkCount = m_program->getLinkCount();
}
« no previous file with comments | « Source/core/html/canvas/WebGLUniformLocation.h ('k') | Source/core/html/canvas/WebGLVertexArrayObjectOES.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698