| 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;
|
|
|