From 4abc896a826c892c0d124989cc4ea6f490328942 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Sat, 18 Jul 2015 11:34:16 +0200 Subject: src: replace usage of v8::Handle with v8::Local v8::Handle is deprecated: https://codereview.chromium.org/1224623004 PR-URL: https://github.com/nodejs/io.js/pull/2202 Reviewed-By: Ben Noordhuis --- src/pipe_wrap.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/pipe_wrap.h') diff --git a/src/pipe_wrap.h b/src/pipe_wrap.h index 6c74de984b3..eb3d18b80df 100644 --- a/src/pipe_wrap.h +++ b/src/pipe_wrap.h @@ -12,15 +12,15 @@ class PipeWrap : public StreamWrap { uv_pipe_t* UVHandle(); static v8::Local Instantiate(Environment* env, AsyncWrap* parent); - static void Initialize(v8::Handle target, - v8::Handle unused, - v8::Handle context); + static void Initialize(v8::Local target, + v8::Local unused, + v8::Local context); size_t self_size() const override { return sizeof(*this); } private: PipeWrap(Environment* env, - v8::Handle object, + v8::Local object, bool ipc, AsyncWrap* parent); -- cgit v1.2.3