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

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

Powered by Google App Engine
This is Rietveld 408576698