Index: Source/modules/webgl/WebGLDepthTexture.cpp |
diff --git a/Source/modules/webgl/WebGLDepthTexture.cpp b/Source/modules/webgl/WebGLDepthTexture.cpp |
index 2fd7987975361db85b6143f8957dc923efbc5ab2..341876823568053a25f662d37b52ab107cc7bef6 100644 |
--- a/Source/modules/webgl/WebGLDepthTexture.cpp |
+++ b/Source/modules/webgl/WebGLDepthTexture.cpp |
@@ -44,9 +44,9 @@ |
return WebGLDepthTextureName; |
} |
-WebGLDepthTexture* WebGLDepthTexture::create(WebGLRenderingContextBase* context) |
+PassRefPtrWillBeRawPtr<WebGLDepthTexture> WebGLDepthTexture::create(WebGLRenderingContextBase* context) |
{ |
- return new WebGLDepthTexture(context); |
+ return adoptRefWillBeNoop(new WebGLDepthTexture(context)); |
} |
bool WebGLDepthTexture::supported(WebGLRenderingContextBase* context) |