| Index: Source/core/html/canvas/WebGLTexture.cpp
|
| diff --git a/Source/core/html/canvas/WebGLTexture.cpp b/Source/core/html/canvas/WebGLTexture.cpp
|
| index 292974230ea6f5744821e6c55e2dc18bb7dd5691..f2254fdf42d86d8ce1ebab2872056ce273dc5422 100644
|
| --- a/Source/core/html/canvas/WebGLTexture.cpp
|
| +++ b/Source/core/html/canvas/WebGLTexture.cpp
|
| @@ -31,9 +31,9 @@
|
|
|
| namespace WebCore {
|
|
|
| -PassRefPtr<WebGLTexture> WebGLTexture::create(WebGLRenderingContextBase* ctx)
|
| +PassRefPtrWillBeRawPtr<WebGLTexture> WebGLTexture::create(WebGLRenderingContextBase* ctx)
|
| {
|
| - return adoptRef(new WebGLTexture(ctx));
|
| + return adoptRefWillBeNoop(new WebGLTexture(ctx));
|
| }
|
|
|
| WebGLTexture::WebGLTexture(WebGLRenderingContextBase* ctx)
|
|
|