Index: Source/core/html/canvas/WebGLCompressedTextureATC.cpp |
diff --git a/Source/core/html/canvas/WebGLCompressedTextureATC.cpp b/Source/core/html/canvas/WebGLCompressedTextureATC.cpp |
index 0c950f08a772d447ae0dc93312bb27a556c2c49d..e4c8835b0e589ffbd19d151b7031f39d020d24cf 100644 |
--- a/Source/core/html/canvas/WebGLCompressedTextureATC.cpp |
+++ b/Source/core/html/canvas/WebGLCompressedTextureATC.cpp |
@@ -47,9 +47,9 @@ WebGLExtensionName WebGLCompressedTextureATC::name() const |
return WebGLCompressedTextureATCName; |
} |
-PassRefPtr<WebGLCompressedTextureATC> WebGLCompressedTextureATC::create(WebGLRenderingContextBase* context) |
+PassRefPtrWillBeRawPtr<WebGLCompressedTextureATC> WebGLCompressedTextureATC::create(WebGLRenderingContextBase* context) |
{ |
- return adoptRef(new WebGLCompressedTextureATC(context)); |
+ return adoptRefWillBeNoop(new WebGLCompressedTextureATC(context)); |
} |
bool WebGLCompressedTextureATC::supported(WebGLRenderingContextBase* context) |