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