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

Unified Diff: gin/per_context_data.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/per_context_data.h ('k') | gin/per_context_data_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gin/per_context_data.cc
diff --git a/gin/per_context_data.cc b/gin/per_context_data.cc
index 178c0d122c1957b703149c2635de2b25fb51f09c..8185d3fd1bc2a402c3e777c2b3feedf3860ed04b 100644
--- a/gin/per_context_data.cc
+++ b/gin/per_context_data.cc
@@ -11,7 +11,7 @@
namespace gin {
PerContextData::PerContextData(ContextHolder* context_holder,
- v8::Handle<v8::Context> context)
+ v8::Local<v8::Context> context)
: context_holder_(context_holder),
runner_(NULL) {
context->SetAlignedPointerInEmbedderData(
@@ -25,7 +25,7 @@ PerContextData::~PerContextData() {
}
// static
-PerContextData* PerContextData::From(v8::Handle<v8::Context> context) {
+PerContextData* PerContextData::From(v8::Local<v8::Context> context) {
return static_cast<PerContextData*>(
context->GetAlignedPointerFromEmbedderData(kEncodedValueIndex));
}
« no previous file with comments | « gin/per_context_data.h ('k') | gin/per_context_data_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698