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

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

Issue 1387743002: Fixed expando-loss.html test. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed review feedback from haraken. Created 5 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/OESVertexArrayObject.h
diff --git a/third_party/WebKit/Source/modules/webgl/OESVertexArrayObject.h b/third_party/WebKit/Source/modules/webgl/OESVertexArrayObject.h
index 760e90f7cfe565960c022eb470676275f96a2589..52c50e5ab5c20a556da8ae9f03d50dd880cd2203 100644
--- a/third_party/WebKit/Source/modules/webgl/OESVertexArrayObject.h
+++ b/third_party/WebKit/Source/modules/webgl/OESVertexArrayObject.h
@@ -44,9 +44,9 @@ public:
WebGLExtensionName name() const override;
WebGLVertexArrayObjectOES* createVertexArrayOES();
- void deleteVertexArrayOES(WebGLVertexArrayObjectOES*);
+ void deleteVertexArrayOES(ScriptState*, WebGLVertexArrayObjectOES*);
GLboolean isVertexArrayOES(WebGLVertexArrayObjectOES*);
- void bindVertexArrayOES(WebGLVertexArrayObjectOES*);
+ void bindVertexArrayOES(ScriptState*, WebGLVertexArrayObjectOES*);
private:
explicit OESVertexArrayObject(WebGLRenderingContextBase*);

Powered by Google App Engine
This is Rietveld 408576698