summaryrefslogtreecommitdiffstats
path: root/chromium/gin/array_buffer.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/gin/array_buffer.h')
-rw-r--r--chromium/gin/array_buffer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/chromium/gin/array_buffer.h b/chromium/gin/array_buffer.h
index 7886fa9be05..858cbf1088a 100644
--- a/chromium/gin/array_buffer.h
+++ b/chromium/gin/array_buffer.h
@@ -26,7 +26,6 @@ class ArrayBufferAllocator : public v8::ArrayBuffer::Allocator {
class GIN_EXPORT ArrayBuffer {
public:
ArrayBuffer();
- explicit ArrayBuffer(v8::Isolate* isolate);
ArrayBuffer(v8::Isolate* isolate, v8::Handle<v8::ArrayBuffer> buffer);
~ArrayBuffer();
ArrayBuffer& operator=(const ArrayBuffer& other);
@@ -55,6 +54,7 @@ class GIN_EXPORT ArrayBufferView {
ArrayBufferView();
ArrayBufferView(v8::Isolate* isolate, v8::Handle<v8::ArrayBufferView> view);
~ArrayBufferView();
+ ArrayBufferView& operator=(const ArrayBufferView& other);
void* bytes() const {
return static_cast<uint8_t*>(array_buffer_.bytes()) + offset_;