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

Unified Diff: Source/modules/webgl/OESVertexArrayObject.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/OESVertexArrayObject.h
diff --git a/Source/modules/webgl/OESVertexArrayObject.h b/Source/modules/webgl/OESVertexArrayObject.h
index 1f2a03058f3b6d16367be8119099ae1790b99e02..3910b29d4cb9f7d57b0c387f277a175a6269bfb4 100644
--- a/Source/modules/webgl/OESVertexArrayObject.h
+++ b/Source/modules/webgl/OESVertexArrayObject.h
@@ -37,14 +37,14 @@ class WebGLVertexArrayObjectOES;
class OESVertexArrayObject final : public WebGLExtension {
DEFINE_WRAPPERTYPEINFO();
public:
- static PassRefPtrWillBeRawPtr<OESVertexArrayObject> create(WebGLRenderingContextBase*);
+ static OESVertexArrayObject* create(WebGLRenderingContextBase*);
static bool supported(WebGLRenderingContextBase*);
static const char* extensionName();
~OESVertexArrayObject() override;
WebGLExtensionName name() const override;
- PassRefPtrWillBeRawPtr<WebGLVertexArrayObjectOES> createVertexArrayOES();
+ WebGLVertexArrayObjectOES* createVertexArrayOES();
void deleteVertexArrayOES(WebGLVertexArrayObjectOES*);
GLboolean isVertexArrayOES(WebGLVertexArrayObjectOES*);
void bindVertexArrayOES(WebGLVertexArrayObjectOES*);

Powered by Google App Engine
This is Rietveld 408576698