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

Unified Diff: third_party/WebKit/Source/modules/webgl/WebGLVertexArrayObjectBase.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
« no previous file with comments | « third_party/WebKit/Source/modules/webgl/WebGLVertexArrayObjectBase.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/modules/webgl/WebGLVertexArrayObjectBase.cpp
diff --git a/third_party/WebKit/Source/modules/webgl/WebGLVertexArrayObjectBase.cpp b/third_party/WebKit/Source/modules/webgl/WebGLVertexArrayObjectBase.cpp
index ea3fc0817ef1888e64609da794fc68e0454759dc..8d6d21526621d8312584bf6fb2f5ca9981b1ef2e 100644
--- a/third_party/WebKit/Source/modules/webgl/WebGLVertexArrayObjectBase.cpp
+++ b/third_party/WebKit/Source/modules/webgl/WebGLVertexArrayObjectBase.cpp
@@ -127,17 +127,6 @@ void WebGLVertexArrayObjectBase::unbindBuffer(WebGLBuffer* buffer) {
updateAttribBufferBoundStatus();
}
-void WebGLVertexArrayObjectBase::visitChildDOMWrappers(
- v8::Isolate* isolate,
- const v8::Persistent<v8::Object>& wrapper) {
- DOMWrapperWorld::setWrapperReferencesInAllWorlds(
- wrapper, m_boundElementArrayBuffer, isolate);
- for (size_t i = 0; i < m_arrayBufferList.size(); ++i) {
- DOMWrapperWorld::setWrapperReferencesInAllWorlds(
- wrapper, m_arrayBufferList[i], isolate);
- }
-}
-
DEFINE_TRACE(WebGLVertexArrayObjectBase) {
visitor->trace(m_boundElementArrayBuffer);
visitor->trace(m_arrayBufferList);
« no previous file with comments | « third_party/WebKit/Source/modules/webgl/WebGLVertexArrayObjectBase.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698