Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichaƫl Zasso <mic.besace@gmail.com>2015-07-18 12:34:16 +0300
committerRod Vagg <rod@vagg.org>2015-09-06 14:38:05 +0300
commit4abc896a826c892c0d124989cc4ea6f490328942 (patch)
treeb201398a2fd9ea783ef5a8c9bf0ca9299f2451c4 /src/timer_wrap.cc
parent9a03ae63566f761539bd3a18f0b08c34c4ba0e13 (diff)
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 <info@bnoordhuis.nl>
Diffstat (limited to 'src/timer_wrap.cc')
-rw-r--r--src/timer_wrap.cc9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/timer_wrap.cc b/src/timer_wrap.cc
index f3d5d1fedba..79fa86953d4 100644
--- a/src/timer_wrap.cc
+++ b/src/timer_wrap.cc
@@ -14,7 +14,6 @@ using v8::Context;
using v8::Function;
using v8::FunctionCallbackInfo;
using v8::FunctionTemplate;
-using v8::Handle;
using v8::HandleScope;
using v8::Integer;
using v8::Local;
@@ -25,9 +24,9 @@ const uint32_t kOnTimeout = 0;
class TimerWrap : public HandleWrap {
public:
- static void Initialize(Handle<Object> target,
- Handle<Value> unused,
- Handle<Context> context) {
+ static void Initialize(Local<Object> target,
+ Local<Value> unused,
+ Local<Context> context) {
Environment* env = Environment::GetCurrent(context);
Local<FunctionTemplate> constructor = env->NewFunctionTemplate(New);
constructor->InstanceTemplate()->SetInternalFieldCount(1);
@@ -60,7 +59,7 @@ class TimerWrap : public HandleWrap {
new TimerWrap(env, args.This());
}
- TimerWrap(Environment* env, Handle<Object> object)
+ TimerWrap(Environment* env, Local<Object> object)
: HandleWrap(env,
object,
reinterpret_cast<uv_handle_t*>(&handle_),