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

Unified Diff: Source/modules/webgl/WebGLCompressedTextureATC.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, 5 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/WebGLCompressedTextureATC.cpp
diff --git a/Source/modules/webgl/WebGLCompressedTextureATC.cpp b/Source/modules/webgl/WebGLCompressedTextureATC.cpp
index ecf513a90f3828da6ae352d5479eecc797bb22d7..4b4cbcedc714fb7cded9b8835f44dc8f4d2f5c60 100644
--- a/Source/modules/webgl/WebGLCompressedTextureATC.cpp
+++ b/Source/modules/webgl/WebGLCompressedTextureATC.cpp
@@ -46,9 +46,9 @@ WebGLExtensionName WebGLCompressedTextureATC::name() const
return WebGLCompressedTextureATCName;
}
-PassRefPtrWillBeRawPtr<WebGLCompressedTextureATC> WebGLCompressedTextureATC::create(WebGLRenderingContextBase* context)
+WebGLCompressedTextureATC* WebGLCompressedTextureATC::create(WebGLRenderingContextBase* context)
{
- return adoptRefWillBeNoop(new WebGLCompressedTextureATC(context));
+ return new WebGLCompressedTextureATC(context);
}
bool WebGLCompressedTextureATC::supported(WebGLRenderingContextBase* context)

Powered by Google App Engine
This is Rietveld 408576698