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

Unified Diff: Source/core/html/canvas/WebGLCompressedTextureATC.cpp

Issue 365653002: Oilpan: move 2D Canvas and WebGL objects to the heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Smaller adjustments Created 6 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/core/html/canvas/WebGLCompressedTextureATC.cpp
diff --git a/Source/core/html/canvas/WebGLCompressedTextureATC.cpp b/Source/core/html/canvas/WebGLCompressedTextureATC.cpp
index 0c950f08a772d447ae0dc93312bb27a556c2c49d..e4c8835b0e589ffbd19d151b7031f39d020d24cf 100644
--- a/Source/core/html/canvas/WebGLCompressedTextureATC.cpp
+++ b/Source/core/html/canvas/WebGLCompressedTextureATC.cpp
@@ -47,9 +47,9 @@ WebGLExtensionName WebGLCompressedTextureATC::name() const
return WebGLCompressedTextureATCName;
}
-PassRefPtr<WebGLCompressedTextureATC> WebGLCompressedTextureATC::create(WebGLRenderingContextBase* context)
+PassRefPtrWillBeRawPtr<WebGLCompressedTextureATC> WebGLCompressedTextureATC::create(WebGLRenderingContextBase* context)
{
- return adoptRef(new WebGLCompressedTextureATC(context));
+ return adoptRefWillBeNoop(new WebGLCompressedTextureATC(context));
}
bool WebGLCompressedTextureATC::supported(WebGLRenderingContextBase* context)

Powered by Google App Engine
This is Rietveld 408576698