diff options
author | Jocelyn Turcotte <jocelyn.turcotte@digia.com> | 2014-08-08 14:30:41 +0200 |
---|---|---|
committer | Jocelyn Turcotte <jocelyn.turcotte@digia.com> | 2014-08-12 13:49:54 +0200 |
commit | ab0a50979b9eb4dfa3320eff7e187e41efedf7a9 (patch) | |
tree | 498dfb8a97ff3361a9f7486863a52bb4e26bb898 /chromium/gin/array_buffer.h | |
parent | 4ce69f7403811819800e7c5ae1318b2647e778d1 (diff) | |
download | qtwebengine-chromium-ab0a50979b9eb4dfa3320eff7e187e41efedf7a9.tar.gz |
Update Chromium to beta version 37.0.2062.68
Change-Id: I188e3b5aff1bec75566014291b654eb19f5bc8ca
Reviewed-by: Andras Becsi <andras.becsi@digia.com>
Diffstat (limited to 'chromium/gin/array_buffer.h')
-rw-r--r-- | chromium/gin/array_buffer.h | 2 |
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_; |