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

Unified Diff: Source/modules/webgl/WebGLObject.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/WebGLObject.h
diff --git a/Source/modules/webgl/WebGLObject.h b/Source/modules/webgl/WebGLObject.h
index b94a612ac520223a92efd7ca629d9687bc87fec6..2c1dcd47339620d5761eba44861ab9e6c5b87920 100644
--- a/Source/modules/webgl/WebGLObject.h
+++ b/Source/modules/webgl/WebGLObject.h
@@ -46,7 +46,7 @@ Platform3DObject objectOrZero(const T* object)
return object ? object->object() : 0;
}
-class WebGLObject : public RefCountedWillBeGarbageCollectedFinalized<WebGLObject>, public ScriptWrappable {
+class WebGLObject : public GarbageCollectedFinalized<WebGLObject>, public ScriptWrappable {
public:
virtual ~WebGLObject();

Powered by Google App Engine
This is Rietveld 408576698