| Index: Source/core/html/canvas/WebGLProgram.h
|
| diff --git a/Source/core/html/canvas/WebGLProgram.h b/Source/core/html/canvas/WebGLProgram.h
|
| index 5827afe21df789fe56bef0a6bb25c55b8277fc07..aa343fb7b561c3d4012dcad09aeb0c511bb769a0 100644
|
| --- a/Source/core/html/canvas/WebGLProgram.h
|
| +++ b/Source/core/html/canvas/WebGLProgram.h
|
| @@ -38,7 +38,7 @@ class WebGLProgram FINAL : public WebGLSharedObject, public ScriptWrappable {
|
| public:
|
| virtual ~WebGLProgram();
|
|
|
| - static PassRefPtr<WebGLProgram> create(WebGLRenderingContext*);
|
| + static PassRefPtr<WebGLProgram> create(WebGLRenderingContextBase*);
|
|
|
| unsigned numActiveAttribLocations();
|
| GLint getActiveAttribLocation(GLuint index);
|
| @@ -61,7 +61,7 @@ public:
|
| bool detachShader(WebGLShader*);
|
|
|
| protected:
|
| - WebGLProgram(WebGLRenderingContext*);
|
| + WebGLProgram(WebGLRenderingContextBase*);
|
|
|
| virtual void deleteObjectImpl(blink::WebGraphicsContext3D*, Platform3DObject) OVERRIDE;
|
|
|
|
|