Use Local instead of Handle

This commit is contained in:
Cheng Zhao 2015-05-22 19:11:02 +08:00
parent 047a8de934
commit 269be86998
23 changed files with 238 additions and 238 deletions

View file

@ -17,7 +17,7 @@ CallbackHolderBase::~CallbackHolderBase() {
DCHECK(v8_ref_.IsEmpty());
}
v8::Handle<v8::External> CallbackHolderBase::GetHandle(v8::Isolate* isolate) {
v8::Local<v8::External> CallbackHolderBase::GetHandle(v8::Isolate* isolate) {
return MATE_PERSISTENT_TO_LOCAL(v8::External, isolate, v8_ref_);
}