| Index: Source/core/html/canvas/OESVertexArrayObject.h
|
| diff --git a/Source/core/html/canvas/OESVertexArrayObject.h b/Source/core/html/canvas/OESVertexArrayObject.h
|
| index d790bc0c53502b06a586cfa844108ac3ca972927..3f616be0575884a685dcffbe80f82de3c7a45ef1 100644
|
| --- a/Source/core/html/canvas/OESVertexArrayObject.h
|
| +++ b/Source/core/html/canvas/OESVertexArrayObject.h
|
| @@ -32,17 +32,17 @@
|
|
|
| namespace WebCore {
|
|
|
| -class WebGLRenderingContext;
|
| +class WebGLRenderingContextBase;
|
| class WebGLVertexArrayObjectOES;
|
|
|
| class OESVertexArrayObject FINAL : public WebGLExtension, public ScriptWrappable {
|
| public:
|
| - static PassRefPtr<OESVertexArrayObject> create(WebGLRenderingContext*);
|
| - static bool supported(WebGLRenderingContext*);
|
| + static PassRefPtr<OESVertexArrayObject> create(WebGLRenderingContextBase*);
|
| + static bool supported(WebGLRenderingContextBase*);
|
| static const char* extensionName();
|
|
|
| virtual ~OESVertexArrayObject();
|
| - virtual ExtensionName name() const OVERRIDE;
|
| + virtual WebGLExtensionName name() const OVERRIDE;
|
|
|
| PassRefPtr<WebGLVertexArrayObjectOES> createVertexArrayOES();
|
| void deleteVertexArrayOES(WebGLVertexArrayObjectOES*);
|
| @@ -50,7 +50,7 @@ public:
|
| void bindVertexArrayOES(WebGLVertexArrayObjectOES*);
|
|
|
| private:
|
| - OESVertexArrayObject(WebGLRenderingContext*);
|
| + OESVertexArrayObject(WebGLRenderingContextBase*);
|
| };
|
|
|
| } // namespace WebCore
|
|
|