diff options
author | Allan Sandfeld Jensen <allan.jensen@theqtcompany.com> | 2015-06-18 14:10:49 +0200 |
---|---|---|
committer | Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com> | 2015-06-18 13:53:24 +0000 |
commit | 813fbf95af77a531c57a8c497345ad2c61d475b3 (patch) | |
tree | 821b2c8de8365f21b6c9ba17a236fb3006a1d506 /chromium/gin/array_buffer.h | |
parent | af6588f8d723931a298c995fa97259bb7f7deb55 (diff) | |
download | qtwebengine-chromium-813fbf95af77a531c57a8c497345ad2c61d475b3.tar.gz |
BASELINE: Update chromium to 44.0.2403.47
Change-Id: Ie056fedba95cf5e5c76b30c4b2c80fca4764aa2f
Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>
Diffstat (limited to 'chromium/gin/array_buffer.h')
-rw-r--r-- | chromium/gin/array_buffer.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/chromium/gin/array_buffer.h b/chromium/gin/array_buffer.h index fe3fae28153..4451540e654 100644 --- a/chromium/gin/array_buffer.h +++ b/chromium/gin/array_buffer.h @@ -26,7 +26,7 @@ class ArrayBufferAllocator : public v8::ArrayBuffer::Allocator { class GIN_EXPORT ArrayBuffer { public: ArrayBuffer(); - ArrayBuffer(v8::Isolate* isolate, v8::Handle<v8::ArrayBuffer> buffer); + ArrayBuffer(v8::Isolate* isolate, v8::Local<v8::ArrayBuffer> buffer); ~ArrayBuffer(); ArrayBuffer& operator=(const ArrayBuffer& other); @@ -45,14 +45,14 @@ class GIN_EXPORT ArrayBuffer { template<> struct GIN_EXPORT Converter<ArrayBuffer> { - static bool FromV8(v8::Isolate* isolate, v8::Handle<v8::Value> val, + static bool FromV8(v8::Isolate* isolate, v8::Local<v8::Value> val, ArrayBuffer* out); }; class GIN_EXPORT ArrayBufferView { public: ArrayBufferView(); - ArrayBufferView(v8::Isolate* isolate, v8::Handle<v8::ArrayBufferView> view); + ArrayBufferView(v8::Isolate* isolate, v8::Local<v8::ArrayBufferView> view); ~ArrayBufferView(); ArrayBufferView& operator=(const ArrayBufferView& other); @@ -71,7 +71,7 @@ class GIN_EXPORT ArrayBufferView { template<> struct GIN_EXPORT Converter<ArrayBufferView> { - static bool FromV8(v8::Isolate* isolate, v8::Handle<v8::Value> val, + static bool FromV8(v8::Isolate* isolate, v8::Local<v8::Value> val, ArrayBufferView* out); }; |