| Index: Source/core/html/canvas/WebGLDepthTexture.cpp | 
| diff --git a/Source/core/html/canvas/WebGLDepthTexture.cpp b/Source/core/html/canvas/WebGLDepthTexture.cpp | 
| index eb2e41d905b797b6c18f77668cbd954f6c1a40e7..76455fa2809dd3d5c3e2232a64467ec361038530 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) | 
|  |