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

Unified Diff: Source/core/html/canvas/ANGLEInstancedArrays.h

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/ANGLEInstancedArrays.h
diff --git a/Source/core/html/canvas/ANGLEInstancedArrays.h b/Source/core/html/canvas/ANGLEInstancedArrays.h
index 4bb0657a9dce0da444f8b009b91074f8e39d23ea..7d3ec3884171f4613fee4ee867eec408d3c8b0da 100644
--- a/Source/core/html/canvas/ANGLEInstancedArrays.h
+++ b/Source/core/html/canvas/ANGLEInstancedArrays.h
@@ -40,7 +40,7 @@ class WebGLRenderingContextBase;
class ANGLEInstancedArrays FINAL : public WebGLExtension, public ScriptWrappable {
public:
- static PassRefPtr<ANGLEInstancedArrays> create(WebGLRenderingContextBase*);
+ static PassRefPtrWillBeRawPtr<ANGLEInstancedArrays> create(WebGLRenderingContextBase*);
static bool supported(WebGLRenderingContextBase*);
static const char* extensionName();
@@ -52,7 +52,7 @@ public:
void vertexAttribDivisorANGLE(GLuint index, GLuint divisor);
private:
- ANGLEInstancedArrays(WebGLRenderingContextBase*);
+ explicit ANGLEInstancedArrays(WebGLRenderingContextBase*);
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698