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

Unified Diff: third_party/WebKit/Source/modules/webgl/WebGLProgram.cpp

Issue 2671553003: Remove uses of VisitDOMWrapper (Closed)
Patch Set: Add DependentLifetime when removing Custom=VisitDOMWrapper Created 3 years, 10 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: 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 2857fb2893f54f13e49f0ddde583954133ef593d..b9bf8c50a997602b85b834c1cccb4c14c76305cd 100644
--- a/third_party/WebKit/Source/modules/webgl/WebGLProgram.cpp
+++ b/third_party/WebKit/Source/modules/webgl/WebGLProgram.cpp
@@ -132,15 +132,6 @@ bool WebGLProgram::detachShader(WebGLShader* shader) {
}
}
-void WebGLProgram::visitChildDOMWrappers(
- v8::Isolate* isolate,
- const v8::Persistent<v8::Object>& wrapper) {
- DOMWrapperWorld::setWrapperReferencesInAllWorlds(wrapper, m_vertexShader,
- isolate);
- DOMWrapperWorld::setWrapperReferencesInAllWorlds(wrapper, m_fragmentShader,
- isolate);
-}
-
void WebGLProgram::cacheInfoIfNeeded(WebGLRenderingContextBase* context) {
if (m_infoValid)
return;

Powered by Google App Engine
This is Rietveld 408576698