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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/V8PrivateProperty.h

Issue 2023603003: Fix content scripts that use WebGL. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@yukishiino-v8privateproperty-fix
Patch Set: Reintroduced persistent caches. Created 4 years, 7 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/bindings/core/v8/V8PrivateProperty.h
diff --git a/third_party/WebKit/Source/bindings/core/v8/V8PrivateProperty.h b/third_party/WebKit/Source/bindings/core/v8/V8PrivateProperty.h
index 2a7349b8bf60c0b09baeaf4059f459e000801e86..71302b16858df4b837bf8ff25a58b222920b8dfd 100644
--- a/third_party/WebKit/Source/bindings/core/v8/V8PrivateProperty.h
+++ b/third_party/WebKit/Source/bindings/core/v8/V8PrivateProperty.h
@@ -27,7 +27,18 @@ class ScriptWrappable;
X(IntersectionObserver, Callback) \
X(MutationObserver, Callback) \
X(PerformanceObserver, Callback) \
- X(V8NodeFilterCondition, Filter)
+ X(V8NodeFilterCondition, Filter) \
+ X(WebGLRenderingContext, Extensions) \
+ X(WebGLRenderingContext, Misc) \
+ X(WebGLRenderingContext, Queries) \
+ X(WebGLRenderingContext, Samplers) \
+ X(WebGLRenderingContext, Textures2D) \
+ X(WebGLRenderingContext, Textures2DArray) \
+ X(WebGLRenderingContext, Textures3D) \
+ X(WebGLRenderingContext, TexturesCubeMap) \
+ X(WebGLFramebuffer, Attachments) \
+ X(WebGLProgram, Shaders) \
+ X(WebGLVertexArrayObjectBase, Buffers)
// The getter's name for a private property.
#define V8_PRIVATE_PROPERTY_GETTER_NAME(InterfaceName, PrivateKeyName) \

Powered by Google App Engine
This is Rietveld 408576698