| Index: Source/core/html/canvas/WebGLDepthTexture.cpp
|
| diff --git a/Source/core/html/canvas/WebGLDepthTexture.cpp b/Source/core/html/canvas/WebGLDepthTexture.cpp
|
| index 33816a0d9fe98e6490ef06991ff0853713e04c1d..c218226b963b3d6b8665af0f219180f723d14182 100644
|
| --- a/Source/core/html/canvas/WebGLDepthTexture.cpp
|
| +++ b/Source/core/html/canvas/WebGLDepthTexture.cpp
|
| @@ -45,9 +45,9 @@ WebGLExtensionName WebGLDepthTexture::name() const
|
| return WebGLDepthTextureName;
|
| }
|
|
|
| -PassRefPtr<WebGLDepthTexture> WebGLDepthTexture::create(WebGLRenderingContextBase* context)
|
| +PassRefPtrWillBeRawPtr<WebGLDepthTexture> WebGLDepthTexture::create(WebGLRenderingContextBase* context)
|
| {
|
| - return adoptRef(new WebGLDepthTexture(context));
|
| + return adoptRefWillBeNoop(new WebGLDepthTexture(context));
|
| }
|
|
|
| bool WebGLDepthTexture::supported(WebGLRenderingContextBase* context)
|
|
|