| Index: Source/core/html/canvas/WebGLCompressedTextureATC.cpp
|
| diff --git a/Source/core/html/canvas/WebGLCompressedTextureATC.cpp b/Source/core/html/canvas/WebGLCompressedTextureATC.cpp
|
| index db998a9195b23c7dc8cb2680235ab6f893719850..9df4b36a06d2003a81d35985b2388517c5dc218e 100644
|
| --- a/Source/core/html/canvas/WebGLCompressedTextureATC.cpp
|
| +++ b/Source/core/html/canvas/WebGLCompressedTextureATC.cpp
|
| @@ -49,9 +49,9 @@ WebGLExtension::ExtensionName WebGLCompressedTextureATC::getName() const
|
| return WebGLCompressedTextureATCName;
|
| }
|
|
|
| -PassOwnPtr<WebGLCompressedTextureATC> WebGLCompressedTextureATC::create(WebGLRenderingContext* context)
|
| +PassRefPtr<WebGLCompressedTextureATC> WebGLCompressedTextureATC::create(WebGLRenderingContext* context)
|
| {
|
| - return adoptPtr(new WebGLCompressedTextureATC(context));
|
| + return adoptRef(new WebGLCompressedTextureATC(context));
|
| }
|
|
|
| bool WebGLCompressedTextureATC::supported(WebGLRenderingContext* context)
|
|
|