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