| Index: Source/core/html/canvas/OESVertexArrayObject.h
|
| diff --git a/Source/core/html/canvas/OESVertexArrayObject.h b/Source/core/html/canvas/OESVertexArrayObject.h
|
| index 27a79a09bcd0e532d7371d8babf678d8b3e239d7..3eedfca490356f3d8ac562a6f7df5052967ffd9a 100644
|
| --- a/Source/core/html/canvas/OESVertexArrayObject.h
|
| +++ b/Source/core/html/canvas/OESVertexArrayObject.h
|
| @@ -33,17 +33,17 @@
|
|
|
| namespace WebCore {
|
|
|
| -class WebGLRenderingContext;
|
| +class WebGLRenderingContextBase;
|
| class WebGLVertexArrayObjectOES;
|
|
|
| class OESVertexArrayObject : 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* getExtensionName();
|
|
|
| virtual ~OESVertexArrayObject();
|
| - virtual ExtensionName getName() const;
|
| + virtual WebGLExtensionName getName() const;
|
|
|
| PassRefPtr<WebGLVertexArrayObjectOES> createVertexArrayOES();
|
| void deleteVertexArrayOES(WebGLVertexArrayObjectOES*);
|
| @@ -51,7 +51,7 @@ public:
|
| void bindVertexArrayOES(WebGLVertexArrayObjectOES*);
|
|
|
| private:
|
| - OESVertexArrayObject(WebGLRenderingContext*);
|
| + OESVertexArrayObject(WebGLRenderingContextBase*);
|
| };
|
|
|
| } // namespace WebCore
|
|
|