Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1853)

Unified Diff: Source/modules/webgl/WebGLVertexArrayObject.cpp

Issue 1234883002: [Oilpan] Migrate classes under module/webgl onto oilpan heap (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/modules/webgl/WebGLVertexArrayObject.h ('k') | Source/modules/webgl/WebGLVertexArrayObject.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webgl/WebGLVertexArrayObject.cpp
diff --git a/Source/modules/webgl/WebGLVertexArrayObject.cpp b/Source/modules/webgl/WebGLVertexArrayObject.cpp
index 7223273175537f0d6d8f10840c8f92b6f239f079..7eda3af2d8b4754ec1eca1bc70fc36535a2eb72c 100644
--- a/Source/modules/webgl/WebGLVertexArrayObject.cpp
+++ b/Source/modules/webgl/WebGLVertexArrayObject.cpp
@@ -10,9 +10,9 @@
namespace blink {
-PassRefPtrWillBeRawPtr<WebGLVertexArrayObject> WebGLVertexArrayObject::create(WebGLRenderingContextBase* ctx, VaoType type)
+WebGLVertexArrayObject* WebGLVertexArrayObject::create(WebGLRenderingContextBase* ctx, VaoType type)
{
- return adoptRefWillBeNoop(new WebGLVertexArrayObject(ctx, type));
+ return new WebGLVertexArrayObject(ctx, type);
}
WebGLVertexArrayObject::WebGLVertexArrayObject(WebGLRenderingContextBase* ctx, VaoType type)
« no previous file with comments | « Source/modules/webgl/WebGLVertexArrayObject.h ('k') | Source/modules/webgl/WebGLVertexArrayObject.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698