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

Unified Diff: tools/json_schema_compiler/test/idl_schemas_unittest.cc

Issue 2539363004: Make base::Value::TYPE a scoped enum. (Closed)
Patch Set: Rebase Created 4 years 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 | « tools/json_schema_compiler/cpp_util.py ('k') | tools/json_schema_compiler/util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/json_schema_compiler/test/idl_schemas_unittest.cc
diff --git a/tools/json_schema_compiler/test/idl_schemas_unittest.cc b/tools/json_schema_compiler/test/idl_schemas_unittest.cc
index 07df4fb5ef93062efb1200532b8235e50a46db16..41d42afd1aad0c5e9e735d995094da8dc63279de 100644
--- a/tools/json_schema_compiler/test/idl_schemas_unittest.cc
+++ b/tools/json_schema_compiler/test/idl_schemas_unittest.cc
@@ -69,7 +69,7 @@ TEST(IdlCompiler, Basics) {
std::unique_ptr<base::ListValue> f5_results(Function5::Results::Create(13));
base::Value* f5_result_int = NULL;
ASSERT_TRUE(f5_results->Get(0, &f5_result_int));
- EXPECT_TRUE(f5_result_int->IsType(base::Value::TYPE_INTEGER));
+ EXPECT_TRUE(f5_result_int->IsType(base::Value::Type::INTEGER));
std::unique_ptr<base::ListValue> f6_results(Function6::Results::Create(a));
base::Value* f6_result_dict = NULL;
« no previous file with comments | « tools/json_schema_compiler/cpp_util.py ('k') | tools/json_schema_compiler/util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698