summaryrefslogtreecommitdiff
path: root/Source/WebCore/html/canvas/OESStandardDerivatives.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/html/canvas/OESStandardDerivatives.cpp')
-rw-r--r--Source/WebCore/html/canvas/OESStandardDerivatives.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/Source/WebCore/html/canvas/OESStandardDerivatives.cpp b/Source/WebCore/html/canvas/OESStandardDerivatives.cpp
index 0f2c876c7..dcbb819e3 100644
--- a/Source/WebCore/html/canvas/OESStandardDerivatives.cpp
+++ b/Source/WebCore/html/canvas/OESStandardDerivatives.cpp
@@ -31,7 +31,7 @@
namespace WebCore {
-OESStandardDerivatives::OESStandardDerivatives(WebGLRenderingContext* context)
+OESStandardDerivatives::OESStandardDerivatives(WebGLRenderingContextBase& context)
: WebGLExtension(context)
{
}
@@ -45,11 +45,6 @@ WebGLExtension::ExtensionName OESStandardDerivatives::getName() const
return OESStandardDerivativesName;
}
-OwnPtr<OESStandardDerivatives> OESStandardDerivatives::create(WebGLRenderingContext* context)
-{
- return adoptPtr(new OESStandardDerivatives(context));
-}
-
} // namespace WebCore
#endif // ENABLE(WEBGL)