| 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 b8ed8cc8d209de8e617b54cfe3626d96cb073e91..b068f8713ac9629091ce4a9bd65cf9d219388153 100644
|
| --- a/third_party/WebKit/Source/modules/webgl/WebGLFramebuffer.h
|
| +++ b/third_party/WebKit/Source/modules/webgl/WebGLFramebuffer.h
|
| @@ -26,6 +26,7 @@
|
| #ifndef WebGLFramebuffer_h
|
| #define WebGLFramebuffer_h
|
|
|
| +#include "bindings/core/v8/ScopedPersistent.h"
|
| #include "modules/webgl/WebGLContextObject.h"
|
| #include "modules/webgl/WebGLSharedObject.h"
|
|
|
| @@ -94,7 +95,7 @@ public:
|
|
|
| GLenum getReadBuffer() const { return m_readBuffer; }
|
|
|
| - V8CopyablePersistent<v8::Array>* getPersistentCache();
|
| + ScopedPersistent<v8::Array>* getPersistentCache();
|
|
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| @@ -130,7 +131,7 @@ private:
|
|
|
| GLenum m_readBuffer;
|
|
|
| - V8CopyablePersistent<v8::Array> m_attachmentWrappers;
|
| + ScopedPersistent<v8::Array> m_attachmentWrappers;
|
| };
|
|
|
| } // namespace blink
|
|
|