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

Unified Diff: Source/modules/webgl/WebGLQuery.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: Detach extensions in dtor of RenderingContextBase 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
Index: Source/modules/webgl/WebGLQuery.h
diff --git a/Source/modules/webgl/WebGLQuery.h b/Source/modules/webgl/WebGLQuery.h
index bf877409a473c7a6613d39390873328b2ade9a37..c4ef7d9f48e1c102f44e27cfca6bee9182446b64 100644
--- a/Source/modules/webgl/WebGLQuery.h
+++ b/Source/modules/webgl/WebGLQuery.h
@@ -6,7 +6,6 @@
#define WebGLQuery_h
#include "modules/webgl/WebGLSharedPlatform3DObject.h"
-#include "wtf/PassRefPtr.h"
namespace blink {
@@ -17,7 +16,7 @@ class WebGLQuery : public WebGLSharedPlatform3DObject {
public:
~WebGLQuery() override;
- static PassRefPtrWillBeRawPtr<WebGLQuery> create(WebGL2RenderingContextBase*);
+ static WebGLQuery* create(WebGL2RenderingContextBase*);
void setTarget(GLenum);
GLenum getTarget() const { return m_target; }

Powered by Google App Engine
This is Rietveld 408576698