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

Unified Diff: gin/test/gtest.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_runner.cc ('k') | gin/try_catch.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gin/test/gtest.cc
diff --git a/gin/test/gtest.cc b/gin/test/gtest.cc
index b4060a3b591f61727d80d9f6e2a0e10167e32df2..76aaf1f6f45d32ba0aa7afbcdcaa6c70c5fceaf5 100644
--- a/gin/test/gtest.cc
+++ b/gin/test/gtest.cc
@@ -31,8 +31,8 @@ void ExpectFalse(bool condition, const std::string& description) {
EXPECT_FALSE(condition) << description;
}
-void ExpectEqual(const v8::Handle<v8::Value> expected,
- const v8::Handle<v8::Value> actual,
+void ExpectEqual(const v8::Local<v8::Value> expected,
+ const v8::Local<v8::Value> actual,
const std::string& description) {
EXPECT_TRUE(expected->StrictEquals(actual)) << description;
}
« no previous file with comments | « gin/test/file_runner.cc ('k') | gin/try_catch.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698