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

Unified Diff: third_party/WebKit/Source/modules/webgl/WebGLFramebuffer.h

Issue 2547813002: Remove WebGLObject maps from WebGLRenderingContextBase and WebGLContextGroup. (Closed)
Patch Set: Fixed WebGLContextObject::validate. Made WebGLExtension non-finalized. Created 4 years 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: third_party/WebKit/Source/modules/webgl/WebGLFramebuffer.h
diff --git a/third_party/WebKit/Source/modules/webgl/WebGLFramebuffer.h b/third_party/WebKit/Source/modules/webgl/WebGLFramebuffer.h
index 436cb394c9fed9f991d7434e227a09551fb82ac4..f94471615d606721112da5cf7d2a9a6b760a4076 100644
--- a/third_party/WebKit/Source/modules/webgl/WebGLFramebuffer.h
+++ b/third_party/WebKit/Source/modules/webgl/WebGLFramebuffer.h
@@ -45,10 +45,8 @@ class WebGLFramebuffer final : public WebGLContextObject {
DEFINE_WRAPPERTYPEINFO();
public:
- class WebGLAttachment : public GarbageCollectedFinalized<WebGLAttachment> {
+ class WebGLAttachment : public GarbageCollected<WebGLAttachment> {
public:
- virtual ~WebGLAttachment();
-
virtual WebGLSharedObject* object() const = 0;
virtual bool isSharedObject(WebGLSharedObject*) const = 0;
virtual bool valid() const = 0;
@@ -149,7 +147,6 @@ class WebGLFramebuffer final : public WebGLContextObject {
AttachmentMap;
AttachmentMap m_attachments;
- bool m_destructionInProgress;
bool m_hasEverBeenBound;
bool m_webGL1DepthStencilConsistent;

Powered by Google App Engine
This is Rietveld 408576698