From 813fbf95af77a531c57a8c497345ad2c61d475b3 Mon Sep 17 00:00:00 2001 From: Allan Sandfeld Jensen Date: Thu, 18 Jun 2015 14:10:49 +0200 Subject: BASELINE: Update chromium to 44.0.2403.47 Change-Id: Ie056fedba95cf5e5c76b30c4b2c80fca4764aa2f Reviewed-by: Oswald Buddenhagen --- chromium/gin/array_buffer.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'chromium/gin/array_buffer.h') 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 buffer); + ArrayBuffer(v8::Isolate* isolate, v8::Local buffer); ~ArrayBuffer(); ArrayBuffer& operator=(const ArrayBuffer& other); @@ -45,14 +45,14 @@ class GIN_EXPORT ArrayBuffer { template<> struct GIN_EXPORT Converter { - static bool FromV8(v8::Isolate* isolate, v8::Handle val, + static bool FromV8(v8::Isolate* isolate, v8::Local val, ArrayBuffer* out); }; class GIN_EXPORT ArrayBufferView { public: ArrayBufferView(); - ArrayBufferView(v8::Isolate* isolate, v8::Handle view); + ArrayBufferView(v8::Isolate* isolate, v8::Local view); ~ArrayBufferView(); ArrayBufferView& operator=(const ArrayBufferView& other); @@ -71,7 +71,7 @@ class GIN_EXPORT ArrayBufferView { template<> struct GIN_EXPORT Converter { - static bool FromV8(v8::Isolate* isolate, v8::Handle val, + static bool FromV8(v8::Isolate* isolate, v8::Local val, ArrayBufferView* out); }; -- cgit v1.2.1