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

Unified Diff: Source/modules/webgl/OESTextureHalfFloatLinear.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/OESTextureHalfFloatLinear.cpp
diff --git a/Source/modules/webgl/OESTextureHalfFloatLinear.cpp b/Source/modules/webgl/OESTextureHalfFloatLinear.cpp
index 12b682a0a8a10dc6d7128748967bead969a6cce1..75fdcab9a2304ff9137fd6329c528efb14789a86 100644
--- a/Source/modules/webgl/OESTextureHalfFloatLinear.cpp
+++ b/Source/modules/webgl/OESTextureHalfFloatLinear.cpp
@@ -44,9 +44,9 @@ WebGLExtensionName OESTextureHalfFloatLinear::name() const
return OESTextureHalfFloatLinearName;
}
-PassRefPtrWillBeRawPtr<OESTextureHalfFloatLinear> OESTextureHalfFloatLinear::create(WebGLRenderingContextBase* context)
+OESTextureHalfFloatLinear* OESTextureHalfFloatLinear::create(WebGLRenderingContextBase* context)
{
- return adoptRefWillBeNoop(new OESTextureHalfFloatLinear(context));
+ return new OESTextureHalfFloatLinear(context);
}
bool OESTextureHalfFloatLinear::supported(WebGLRenderingContextBase* context)
« no previous file with comments | « Source/modules/webgl/OESTextureHalfFloatLinear.h ('k') | Source/modules/webgl/OESTextureHalfFloatLinear.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698