| Index: Source/core/html/canvas/WebGLCompressedTexturePVRTC.cpp
|
| diff --git a/Source/core/html/canvas/WebGLCompressedTexturePVRTC.cpp b/Source/core/html/canvas/WebGLCompressedTexturePVRTC.cpp
|
| index a2345659c5cfd2bfcee978f787488aac552bef61..ec5de2c984cb638a92255d9549c2fa0a46645a1d 100644
|
| --- a/Source/core/html/canvas/WebGLCompressedTexturePVRTC.cpp
|
| +++ b/Source/core/html/canvas/WebGLCompressedTexturePVRTC.cpp
|
| @@ -50,9 +50,9 @@ WebGLExtensionName WebGLCompressedTexturePVRTC::name() const
|
| return WebGLCompressedTexturePVRTCName;
|
| }
|
|
|
| -PassRefPtr<WebGLCompressedTexturePVRTC> WebGLCompressedTexturePVRTC::create(WebGLRenderingContextBase* context)
|
| +PassRefPtrWillBeRawPtr<WebGLCompressedTexturePVRTC> WebGLCompressedTexturePVRTC::create(WebGLRenderingContextBase* context)
|
| {
|
| - return adoptRef(new WebGLCompressedTexturePVRTC(context));
|
| + return adoptRefWillBeNoop(new WebGLCompressedTexturePVRTC(context));
|
| }
|
|
|
| bool WebGLCompressedTexturePVRTC::supported(WebGLRenderingContextBase* context)
|
|
|