Index: third_party/WebKit/Source/modules/webgl/WebGLProgram.cpp |
diff --git a/third_party/WebKit/Source/modules/webgl/WebGLProgram.cpp b/third_party/WebKit/Source/modules/webgl/WebGLProgram.cpp |
index ddb7f92001e0a71519414203599143e72eed5860..a0c047befdbadad7e0ab7cd4f4850d8415e9b9a7 100644 |
--- a/third_party/WebKit/Source/modules/webgl/WebGLProgram.cpp |
+++ b/third_party/WebKit/Source/modules/webgl/WebGLProgram.cpp |
@@ -162,4 +162,10 @@ DEFINE_TRACE(WebGLProgram) { |
WebGLSharedPlatform3DObject::trace(visitor); |
} |
+DEFINE_TRACE_WRAPPERS(WebGLProgram) { |
+ visitor->traceWrappers(m_vertexShader); |
+ visitor->traceWrappers(m_fragmentShader); |
+ WebGLSharedPlatform3DObject::traceWrappers(visitor); |
+} |
+ |
} // namespace blink |