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

Unified Diff: Source/modules/webgl/WebGLShaderPrecisionFormat.h

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/WebGLShaderPrecisionFormat.h
diff --git a/Source/modules/webgl/WebGLShaderPrecisionFormat.h b/Source/modules/webgl/WebGLShaderPrecisionFormat.h
index 1b2c998681e0bdf74bbe69edea60ae0e1cb3ffce..96748bcb7d06b49764b756c9044e67ba3aa44718 100644
--- a/Source/modules/webgl/WebGLShaderPrecisionFormat.h
+++ b/Source/modules/webgl/WebGLShaderPrecisionFormat.h
@@ -35,10 +35,10 @@
namespace blink {
-class WebGLShaderPrecisionFormat final : public RefCountedWillBeGarbageCollected<WebGLShaderPrecisionFormat>, public ScriptWrappable {
+class WebGLShaderPrecisionFormat final : public GarbageCollected<WebGLShaderPrecisionFormat>, public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
public:
- static PassRefPtrWillBeRawPtr<WebGLShaderPrecisionFormat> create(GLint rangeMin, GLint rangeMax, GLint precision);
+ static WebGLShaderPrecisionFormat* create(GLint rangeMin, GLint rangeMax, GLint precision);
GLint rangeMin() const;
GLint rangeMax() const;

Powered by Google App Engine
This is Rietveld 408576698