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

Unified Diff: Source/core/html/canvas/EXTBlendMinMax.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/EXTBlendMinMax.cpp
diff --git a/Source/core/html/canvas/EXTBlendMinMax.cpp b/Source/core/html/canvas/EXTBlendMinMax.cpp
index e54eb6d7a0936878ba9a4b56eac0f58eb0ca62d9..992ce9e081ffe831e4cacc204687603949df9d1a 100644
--- a/Source/core/html/canvas/EXTBlendMinMax.cpp
+++ b/Source/core/html/canvas/EXTBlendMinMax.cpp
@@ -24,9 +24,9 @@ WebGLExtensionName EXTBlendMinMax::name() const
return EXTBlendMinMaxName;
}
-PassRefPtr<EXTBlendMinMax> EXTBlendMinMax::create(WebGLRenderingContextBase* context)
+PassRefPtrWillBeRawPtr<EXTBlendMinMax> EXTBlendMinMax::create(WebGLRenderingContextBase* context)
{
- return adoptRef(new EXTBlendMinMax(context));
+ return adoptRefWillBeNoop(new EXTBlendMinMax(context));
}
bool EXTBlendMinMax::supported(WebGLRenderingContextBase* context)

Powered by Google App Engine
This is Rietveld 408576698