Index: Source/modules/webgl/EXTFragDepth.cpp |
diff --git a/Source/modules/webgl/EXTFragDepth.cpp b/Source/modules/webgl/EXTFragDepth.cpp |
index 88a42fe453350e4a5b25b781eba981845859e023..594f593d98c77265c0e5318202d5dc0edc2c9394 100644 |
--- a/Source/modules/webgl/EXTFragDepth.cpp |
+++ b/Source/modules/webgl/EXTFragDepth.cpp |
@@ -44,9 +44,9 @@ WebGLExtensionName EXTFragDepth::name() const |
return EXTFragDepthName; |
} |
-PassRefPtrWillBeRawPtr<EXTFragDepth> EXTFragDepth::create(WebGLRenderingContextBase* context) |
+EXTFragDepth* EXTFragDepth::create(WebGLRenderingContextBase* context) |
{ |
- return adoptRefWillBeNoop(new EXTFragDepth(context)); |
+ return new EXTFragDepth(context); |
} |
bool EXTFragDepth::supported(WebGLRenderingContextBase* context) |