| Index: Source/core/html/canvas/WebGLSharedObject.h
|
| diff --git a/Source/core/html/canvas/WebGLSharedObject.h b/Source/core/html/canvas/WebGLSharedObject.h
|
| index 025b960ed61413d37f6ad9c172fea83ba13d1a96..990c8ae1565949339baaf7b4b428c0e1a5c93a32 100644
|
| --- a/Source/core/html/canvas/WebGLSharedObject.h
|
| +++ b/Source/core/html/canvas/WebGLSharedObject.h
|
| @@ -31,7 +31,7 @@
|
| namespace WebCore {
|
|
|
| class WebGLContextGroup;
|
| -class WebGLRenderingContext;
|
| +class WebGLRenderingContextBase;
|
|
|
| // WebGLSharedObject the base class for objects that can be shared by multiple
|
| // WebGLRenderingContexts.
|
| @@ -47,7 +47,7 @@ public:
|
| virtual bool isShader() const { return false; }
|
| virtual bool isTexture() const { return false; }
|
|
|
| - virtual bool validate(const WebGLContextGroup* contextGroup, const WebGLRenderingContext*) const OVERRIDE FINAL
|
| + virtual bool validate(const WebGLContextGroup* contextGroup, const WebGLRenderingContextBase*) const OVERRIDE FINAL
|
| {
|
| return contextGroup == m_contextGroup;
|
| }
|
| @@ -55,7 +55,7 @@ public:
|
| void detachContextGroup();
|
|
|
| protected:
|
| - WebGLSharedObject(WebGLRenderingContext*);
|
| + WebGLSharedObject(WebGLRenderingContextBase*);
|
|
|
| virtual bool hasGroupOrContext() const OVERRIDE FINAL
|
| {
|
|
|