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

Unified Diff: gin/test/file_runner.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/test/file.cc ('k') | gin/test/gtest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gin/test/file_runner.cc
diff --git a/gin/test/file_runner.cc b/gin/test/file_runner.cc
index 723ab98dc405a5789de258681edfe424505d4230..8ed0f2125d83775f61159638eebf04822336c530 100644
--- a/gin/test/file_runner.cc
+++ b/gin/test/file_runner.cc
@@ -79,7 +79,7 @@ void RunTestFromFile(const base::FilePath& path, FileRunnerDelegate* delegate,
message_loop.Run();
}
- v8::Handle<v8::Value> result = runner.global()->Get(
+ v8::Local<v8::Value> result = runner.global()->Get(
StringToSymbol(runner.GetContextHolder()->isolate(), "result"));
EXPECT_EQ("PASS", V8ToString(result));
}
« no previous file with comments | « gin/test/file.cc ('k') | gin/test/gtest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698