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

Unified Diff: Source/modules/webgl/WebGLProgram.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, 4 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
« no previous file with comments | « Source/modules/webgl/WebGLObject.cpp ('k') | Source/modules/webgl/WebGLProgram.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webgl/WebGLProgram.h
diff --git a/Source/modules/webgl/WebGLProgram.h b/Source/modules/webgl/WebGLProgram.h
index a8347fa9e13f4a6248432dbb742ff3fba1a11a6d..c2096425cf4bad66f63f51cc074c76a6b3fd089c 100644
--- a/Source/modules/webgl/WebGLProgram.h
+++ b/Source/modules/webgl/WebGLProgram.h
@@ -38,7 +38,7 @@ class WebGLProgram final : public WebGLSharedPlatform3DObject {
public:
~WebGLProgram() override;
- static PassRefPtrWillBeRawPtr<WebGLProgram> create(WebGLRenderingContextBase*);
+ static WebGLProgram* create(WebGLRenderingContextBase*);
unsigned numActiveAttribLocations();
GLint getActiveAttribLocation(GLuint index);
@@ -80,8 +80,8 @@ private:
// program or not.
unsigned m_linkCount;
- RefPtrWillBeMember<WebGLShader> m_vertexShader;
- RefPtrWillBeMember<WebGLShader> m_fragmentShader;
+ Member<WebGLShader> m_vertexShader;
+ Member<WebGLShader> m_fragmentShader;
bool m_infoValid;
};
« no previous file with comments | « Source/modules/webgl/WebGLObject.cpp ('k') | Source/modules/webgl/WebGLProgram.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698