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

Unified Diff: Source/modules/webgl/WebGLVertexArrayObjectOES.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
Index: Source/modules/webgl/WebGLVertexArrayObjectOES.cpp
diff --git a/Source/modules/webgl/WebGLVertexArrayObjectOES.cpp b/Source/modules/webgl/WebGLVertexArrayObjectOES.cpp
index 00e595cebbc4b3a12d892606b8fd66b62869d017..189c672912c7b4a4a96a4c7bca7b0e53b69472f6 100644
--- a/Source/modules/webgl/WebGLVertexArrayObjectOES.cpp
+++ b/Source/modules/webgl/WebGLVertexArrayObjectOES.cpp
@@ -31,9 +31,9 @@
namespace blink {
-PassRefPtrWillBeRawPtr<WebGLVertexArrayObjectOES> WebGLVertexArrayObjectOES::create(WebGLRenderingContextBase* ctx, VaoType type)
+WebGLVertexArrayObjectOES* WebGLVertexArrayObjectOES::create(WebGLRenderingContextBase* ctx, VaoType type)
{
- return adoptRefWillBeNoop(new WebGLVertexArrayObjectOES(ctx, type));
+ return new WebGLVertexArrayObjectOES(ctx, type);
}
WebGLVertexArrayObjectOES::WebGLVertexArrayObjectOES(WebGLRenderingContextBase* ctx, VaoType type)
« no previous file with comments | « Source/modules/webgl/WebGLVertexArrayObjectOES.h ('k') | Source/modules/webgl/WebGLVertexArrayObjectOES.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698