summaryrefslogtreecommitdiff
path: root/src/node_v8.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/node_v8.cc')
-rw-r--r--src/node_v8.cc7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/node_v8.cc b/src/node_v8.cc
index db492e3d1a..9f456daec4 100644
--- a/src/node_v8.cc
+++ b/src/node_v8.cc
@@ -11,7 +11,6 @@ using v8::ArrayBuffer;
using v8::Context;
using v8::Function;
using v8::FunctionCallbackInfo;
-using v8::Handle;
using v8::HeapStatistics;
using v8::Isolate;
using v8::Local;
@@ -59,9 +58,9 @@ void SetFlagsFromString(const FunctionCallbackInfo<Value>& args) {
}
-void InitializeV8Bindings(Handle<Object> target,
- Handle<Value> unused,
- Handle<Context> context) {
+void InitializeV8Bindings(Local<Object> target,
+ Local<Value> unused,
+ Local<Context> context) {
Environment* env = Environment::GetCurrent(context);
env->SetMethod(target,
"updateHeapStatisticsArrayBuffer",