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

Unified Diff: Source/modules/webgl/EXTBlendMinMax.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/EXTBlendMinMax.h ('k') | Source/modules/webgl/EXTBlendMinMax.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webgl/EXTBlendMinMax.cpp
diff --git a/Source/modules/webgl/EXTBlendMinMax.cpp b/Source/modules/webgl/EXTBlendMinMax.cpp
index 0cf70a1a56e551dc1259b23b0f088d2c747ddf37..06a4a32c65a31cb8ad647810dc0f62ba2f54909c 100644
--- a/Source/modules/webgl/EXTBlendMinMax.cpp
+++ b/Source/modules/webgl/EXTBlendMinMax.cpp
@@ -23,9 +23,9 @@ WebGLExtensionName EXTBlendMinMax::name() const
return EXTBlendMinMaxName;
}
-PassRefPtrWillBeRawPtr<EXTBlendMinMax> EXTBlendMinMax::create(WebGLRenderingContextBase* context)
+EXTBlendMinMax* EXTBlendMinMax::create(WebGLRenderingContextBase* context)
{
- return adoptRefWillBeNoop(new EXTBlendMinMax(context));
+ return new EXTBlendMinMax(context);
}
bool EXTBlendMinMax::supported(WebGLRenderingContextBase* context)
« no previous file with comments | « Source/modules/webgl/EXTBlendMinMax.h ('k') | Source/modules/webgl/EXTBlendMinMax.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698