| Index: Source/modules/webgl/OESVertexArrayObject.h
|
| diff --git a/Source/modules/webgl/OESVertexArrayObject.h b/Source/modules/webgl/OESVertexArrayObject.h
|
| index 1f2a03058f3b6d16367be8119099ae1790b99e02..3910b29d4cb9f7d57b0c387f277a175a6269bfb4 100644
|
| --- a/Source/modules/webgl/OESVertexArrayObject.h
|
| +++ b/Source/modules/webgl/OESVertexArrayObject.h
|
| @@ -37,14 +37,14 @@ class WebGLVertexArrayObjectOES;
|
| class OESVertexArrayObject final : public WebGLExtension {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| - static PassRefPtrWillBeRawPtr<OESVertexArrayObject> create(WebGLRenderingContextBase*);
|
| + static OESVertexArrayObject* create(WebGLRenderingContextBase*);
|
| static bool supported(WebGLRenderingContextBase*);
|
| static const char* extensionName();
|
|
|
| ~OESVertexArrayObject() override;
|
| WebGLExtensionName name() const override;
|
|
|
| - PassRefPtrWillBeRawPtr<WebGLVertexArrayObjectOES> createVertexArrayOES();
|
| + WebGLVertexArrayObjectOES* createVertexArrayOES();
|
| void deleteVertexArrayOES(WebGLVertexArrayObjectOES*);
|
| GLboolean isVertexArrayOES(WebGLVertexArrayObjectOES*);
|
| void bindVertexArrayOES(WebGLVertexArrayObjectOES*);
|
|
|