| Index: Source/core/html/canvas/OESStandardDerivatives.cpp
|
| diff --git a/Source/core/html/canvas/OESStandardDerivatives.cpp b/Source/core/html/canvas/OESStandardDerivatives.cpp
|
| index 251396cbef0feebdb55088469cc8994473a7b9a7..49b7adff0d89a773d35af69ac12a9692643dcdd9 100644
|
| --- a/Source/core/html/canvas/OESStandardDerivatives.cpp
|
| +++ b/Source/core/html/canvas/OESStandardDerivatives.cpp
|
| @@ -29,7 +29,7 @@
|
|
|
| namespace WebCore {
|
|
|
| -OESStandardDerivatives::OESStandardDerivatives(WebGLRenderingContext* context)
|
| +OESStandardDerivatives::OESStandardDerivatives(WebGLRenderingContextBase* context)
|
| : WebGLExtension(context)
|
| {
|
| ScriptWrappable::init(this);
|
| @@ -40,17 +40,17 @@ OESStandardDerivatives::~OESStandardDerivatives()
|
| {
|
| }
|
|
|
| -WebGLExtension::ExtensionName OESStandardDerivatives::name() const
|
| +WebGLExtensionName OESStandardDerivatives::name() const
|
| {
|
| return OESStandardDerivativesName;
|
| }
|
|
|
| -PassRefPtr<OESStandardDerivatives> OESStandardDerivatives::create(WebGLRenderingContext* context)
|
| +PassRefPtr<OESStandardDerivatives> OESStandardDerivatives::create(WebGLRenderingContextBase* context)
|
| {
|
| return adoptRef(new OESStandardDerivatives(context));
|
| }
|
|
|
| -bool OESStandardDerivatives::supported(WebGLRenderingContext* context)
|
| +bool OESStandardDerivatives::supported(WebGLRenderingContextBase* context)
|
| {
|
| return context->extensionsUtil()->supportsExtension("GL_OES_standard_derivatives");
|
| }
|
|
|