| Index: third_party/WebKit/Source/modules/webgl/WebGLVertexArrayObjectBase.h
|
| diff --git a/third_party/WebKit/Source/modules/webgl/WebGLVertexArrayObjectBase.h b/third_party/WebKit/Source/modules/webgl/WebGLVertexArrayObjectBase.h
|
| index f2abff9bf9d699fb22651c0fc73c9b8d514503b3..bcf2d1b2ce804ec894bf4b07cdb4252f1025cfad 100644
|
| --- a/third_party/WebKit/Source/modules/webgl/WebGLVertexArrayObjectBase.h
|
| +++ b/third_party/WebKit/Source/modules/webgl/WebGLVertexArrayObjectBase.h
|
| @@ -5,6 +5,7 @@
|
| #ifndef WebGLVertexArrayObjectBase_h
|
| #define WebGLVertexArrayObjectBase_h
|
|
|
| +#include "bindings/core/v8/ScopedPersistent.h"
|
| #include "modules/webgl/WebGLBuffer.h"
|
| #include "modules/webgl/WebGLContextObject.h"
|
| #include "platform/heap/Handle.h"
|
| @@ -34,7 +35,7 @@ public:
|
| void setArrayBufferForAttrib(GLuint, WebGLBuffer*);
|
| void unbindBuffer(WebGLBuffer*);
|
|
|
| - V8CopyablePersistent<v8::Array>* getPersistentCache();
|
| + ScopedPersistent<v8::Array>* getPersistentCache();
|
|
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| @@ -56,7 +57,7 @@ private:
|
|
|
| // For preserving the wrappers of WebGLBuffer objects latched in
|
| // via vertexAttribPointer calls.
|
| - V8CopyablePersistent<v8::Array> m_arrayBufferWrappers;
|
| + ScopedPersistent<v8::Array> m_arrayBufferWrappers;
|
| };
|
|
|
| } // namespace blink
|
|
|