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

Unified Diff: gin/context_holder.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/array_buffer.cc ('k') | gin/converter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gin/context_holder.cc
diff --git a/gin/context_holder.cc b/gin/context_holder.cc
index 241b25622c5b597245d9ed0002b1902420915e55..a72250c865b4ba5b80bd015c270917f2ccdfe4ac 100644
--- a/gin/context_holder.cc
+++ b/gin/context_holder.cc
@@ -18,7 +18,7 @@ ContextHolder::~ContextHolder() {
data_.reset();
}
-void ContextHolder::SetContext(v8::Handle<v8::Context> context) {
+void ContextHolder::SetContext(v8::Local<v8::Context> context) {
DCHECK(context_.IsEmpty());
context_.Reset(isolate_, context);
data_.reset(new PerContextData(this, context));
« no previous file with comments | « gin/array_buffer.cc ('k') | gin/converter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698