Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(774)

Unified Diff: gin/wrapper_info.cc

Issue 1112923003: Replace Handle<> with Local in remaining gin/* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gin/wrappable_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gin/wrapper_info.cc
diff --git a/gin/wrapper_info.cc b/gin/wrapper_info.cc
index 6bf831696b0c1d5787fa3619fb8372e0fe5f18cd..8e8f5b7c9e992b0d05ced03c082c7f7f7bb69d24 100644
--- a/gin/wrapper_info.cc
+++ b/gin/wrapper_info.cc
@@ -6,7 +6,7 @@
namespace gin {
-WrapperInfo* WrapperInfo::From(v8::Handle<v8::Object> object) {
+WrapperInfo* WrapperInfo::From(v8::Local<v8::Object> object) {
if (object->InternalFieldCount() != kNumberOfInternalFields)
return NULL;
WrapperInfo* info = static_cast<WrapperInfo*>(
« no previous file with comments | « gin/wrappable_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698