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

Unified Diff: gin/per_context_data_unittest.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.cc ('k') | gin/public/context_holder.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gin/per_context_data_unittest.cc
diff --git a/gin/per_context_data_unittest.cc b/gin/per_context_data_unittest.cc
index 4d795871950000d14176724ab83061cafe016e3c..831ad1cb697b5ed088d6832ad64616e61ba223da 100644
--- a/gin/per_context_data_unittest.cc
+++ b/gin/per_context_data_unittest.cc
@@ -18,8 +18,8 @@ typedef V8Test PerContextDataTest;
TEST_F(PerContextDataTest, LookupAndDestruction) {
v8::Isolate::Scope isolate_scope(instance_->isolate());
v8::HandleScope handle_scope(instance_->isolate());
- v8::Handle<v8::Context> context = v8::Context::New(
- instance_->isolate(), NULL, v8::Handle<v8::ObjectTemplate>());
+ v8::Local<v8::Context> context = v8::Context::New(
+ instance_->isolate(), NULL, v8::Local<v8::ObjectTemplate>());
{
ContextHolder context_holder(instance_->isolate());
context_holder.SetContext(context);
« no previous file with comments | « gin/per_context_data.cc ('k') | gin/public/context_holder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698