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