Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(44)

Unified Diff: gin/array_buffer.h

Issue 1112923003: Replace Handle<> with Local in remaining gin/* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gin/arguments.cc ('k') | gin/array_buffer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gin/array_buffer.h
diff --git a/gin/array_buffer.h b/gin/array_buffer.h
index fe3fae28153e37e4c80c2fc4b2457a45ad567623..4451540e65436c73653fcb0a57a9784644fee626 100644
--- a/gin/array_buffer.h
+++ b/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);
};
« no previous file with comments | « gin/arguments.cc ('k') | gin/array_buffer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698