Index: Source/core/html/canvas/OESVertexArrayObject.cpp |
diff --git a/Source/core/html/canvas/OESVertexArrayObject.cpp b/Source/core/html/canvas/OESVertexArrayObject.cpp |
index e4a68ceadc181f336cfcc6ddb19ab4dc616b4469..d339603f99aa5f06bba65ae84baf05a6d2954a25 100644 |
--- a/Source/core/html/canvas/OESVertexArrayObject.cpp |
+++ b/Source/core/html/canvas/OESVertexArrayObject.cpp |
@@ -49,17 +49,17 @@ WebGLExtensionName OESVertexArrayObject::name() const |
return OESVertexArrayObjectName; |
} |
-PassRefPtr<OESVertexArrayObject> OESVertexArrayObject::create(WebGLRenderingContextBase* context) |
+PassRefPtrWillBeRawPtr<OESVertexArrayObject> OESVertexArrayObject::create(WebGLRenderingContextBase* context) |
{ |
- return adoptRef(new OESVertexArrayObject(context)); |
+ return adoptRefWillBeNoop(new OESVertexArrayObject(context)); |
} |
-PassRefPtr<WebGLVertexArrayObjectOES> OESVertexArrayObject::createVertexArrayOES() |
+PassRefPtrWillBeRawPtr<WebGLVertexArrayObjectOES> OESVertexArrayObject::createVertexArrayOES() |
{ |
if (isLost()) |
return nullptr; |
- RefPtr<WebGLVertexArrayObjectOES> o = WebGLVertexArrayObjectOES::create(m_context, WebGLVertexArrayObjectOES::VaoTypeUser); |
+ RefPtrWillBeRawPtr<WebGLVertexArrayObjectOES> o = WebGLVertexArrayObjectOES::create(m_context, WebGLVertexArrayObjectOES::VaoTypeUser); |
m_context->addContextObject(o.get()); |
return o.release(); |
} |