summaryrefslogtreecommitdiff
path: root/src/spawn_sync.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/spawn_sync.cc')
-rw-r--r--src/spawn_sync.cc7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/spawn_sync.cc b/src/spawn_sync.cc
index 97bccfd4b7..144af3e747 100644
--- a/src/spawn_sync.cc
+++ b/src/spawn_sync.cc
@@ -13,7 +13,6 @@ using v8::Array;
using v8::Context;
using v8::EscapableHandleScope;
using v8::FunctionCallbackInfo;
-using v8::Handle;
using v8::HandleScope;
using v8::Integer;
using v8::Isolate;
@@ -340,9 +339,9 @@ void SyncProcessStdioPipe::CloseCallback(uv_handle_t* handle) {
}
-void SyncProcessRunner::Initialize(Handle<Object> target,
- Handle<Value> unused,
- Handle<Context> context) {
+void SyncProcessRunner::Initialize(Local<Object> target,
+ Local<Value> unused,
+ Local<Context> context) {
Environment* env = Environment::GetCurrent(context);
env->SetMethod(target, "spawn", Spawn);
}