| Index: Source/core/html/canvas/WebGLLoseContext.cpp
|
| diff --git a/Source/core/html/canvas/WebGLLoseContext.cpp b/Source/core/html/canvas/WebGLLoseContext.cpp
|
| index 174324c4d428651fc08eb5d24dec5e6afb5493d1..233321f8e4c893adb2498cbc982df3e8201c4e9c 100644
|
| --- a/Source/core/html/canvas/WebGLLoseContext.cpp
|
| +++ b/Source/core/html/canvas/WebGLLoseContext.cpp
|
| @@ -52,9 +52,9 @@ WebGLExtensionName WebGLLoseContext::name() const
|
| return WebGLLoseContextName;
|
| }
|
|
|
| -PassRefPtr<WebGLLoseContext> WebGLLoseContext::create(WebGLRenderingContextBase* context)
|
| +PassRefPtrWillBeRawPtr<WebGLLoseContext> WebGLLoseContext::create(WebGLRenderingContextBase* context)
|
| {
|
| - return adoptRef(new WebGLLoseContext(context));
|
| + return adoptRefWillBeNoop(new WebGLLoseContext(context));
|
| }
|
|
|
| void WebGLLoseContext::loseContext()
|
|
|