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

Unified Diff: third_party/WebKit/Source/modules/webgl/WebGLVertexArrayObjectBase.h

Issue 2401893002: [wrapper-tracing] WebGL and friends: Add write barriers (Closed)
Patch Set: Rebase Created 4 years, 2 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/WebGLVertexArrayObjectBase.h
diff --git a/third_party/WebKit/Source/modules/webgl/WebGLVertexArrayObjectBase.h b/third_party/WebKit/Source/modules/webgl/WebGLVertexArrayObjectBase.h
index e5a64982bc226346d90d49ea337eb77ab6d23951..2d8342d22e1c4968ee9bdcab7d11605348990d2e 100644
--- a/third_party/WebKit/Source/modules/webgl/WebGLVertexArrayObjectBase.h
+++ b/third_party/WebKit/Source/modules/webgl/WebGLVertexArrayObjectBase.h
@@ -5,6 +5,7 @@
#ifndef WebGLVertexArrayObjectBase_h
#define WebGLVertexArrayObjectBase_h
+#include "bindings/core/v8/TraceWrapperMember.h"
#include "modules/webgl/WebGLBuffer.h"
#include "modules/webgl/WebGLContextObject.h"
#include "platform/heap/Handle.h"
@@ -62,8 +63,8 @@ class WebGLVertexArrayObjectBase : public WebGLContextObject {
VaoType m_type;
bool m_hasEverBeenBound;
bool m_destructionInProgress;
- Member<WebGLBuffer> m_boundElementArrayBuffer;
- HeapVector<Member<WebGLBuffer>> m_arrayBufferList;
+ TraceWrapperMember<WebGLBuffer> m_boundElementArrayBuffer;
+ HeapVector<TraceWrapperMember<WebGLBuffer>> m_arrayBufferList;
Vector<bool> m_attribEnabled;
bool m_isAllEnabledAttribBufferBound;
};

Powered by Google App Engine
This is Rietveld 408576698