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

Unified Diff: third_party/WebKit/Source/modules/webgl/WebGLFramebuffer.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/WebGLFramebuffer.h
diff --git a/third_party/WebKit/Source/modules/webgl/WebGLFramebuffer.h b/third_party/WebKit/Source/modules/webgl/WebGLFramebuffer.h
index bce6cb9271722110ad72d1de32da8a1f8f49eb57..436cb394c9fed9f991d7434e227a09551fb82ac4 100644
--- a/third_party/WebKit/Source/modules/webgl/WebGLFramebuffer.h
+++ b/third_party/WebKit/Source/modules/webgl/WebGLFramebuffer.h
@@ -26,6 +26,7 @@
#ifndef WebGLFramebuffer_h
#define WebGLFramebuffer_h
+#include "bindings/core/v8/ScriptWrappableVisitor.h"
#include "modules/webgl/WebGLContextObject.h"
#include "modules/webgl/WebGLSharedObject.h"
@@ -144,7 +145,8 @@ class WebGLFramebuffer final : public WebGLContextObject {
GLuint m_object;
- typedef HeapHashMap<GLenum, Member<WebGLAttachment>> AttachmentMap;
+ typedef HeapHashMap<GLenum, TraceWrapperMember<WebGLAttachment>>
+ AttachmentMap;
AttachmentMap m_attachments;
bool m_destructionInProgress;

Powered by Google App Engine
This is Rietveld 408576698