| Index: Source/core/html/canvas/WebGLCompressedTextureETC1.cpp
|
| diff --git a/Source/core/html/canvas/WebGLCompressedTextureETC1.cpp b/Source/core/html/canvas/WebGLCompressedTextureETC1.cpp
|
| index a2abde855a3e881dc568d4df898cd72030d63abe..74d67da0f076a9fb8e03592553e9b3933af191b3 100644
|
| --- a/Source/core/html/canvas/WebGLCompressedTextureETC1.cpp
|
| +++ b/Source/core/html/canvas/WebGLCompressedTextureETC1.cpp
|
| @@ -26,9 +26,9 @@ WebGLExtensionName WebGLCompressedTextureETC1::name() const
|
| return WebGLCompressedTextureETC1Name;
|
| }
|
|
|
| -PassRefPtr<WebGLCompressedTextureETC1> WebGLCompressedTextureETC1::create(WebGLRenderingContextBase* context)
|
| +PassRefPtrWillBeRawPtr<WebGLCompressedTextureETC1> WebGLCompressedTextureETC1::create(WebGLRenderingContextBase* context)
|
| {
|
| - return adoptRef(new WebGLCompressedTextureETC1(context));
|
| + return adoptRefWillBeNoop(new WebGLCompressedTextureETC1(context));
|
| }
|
|
|
| bool WebGLCompressedTextureETC1::supported(WebGLRenderingContextBase* context)
|
|
|