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

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

Issue 2476493003: Remove FundamentalValue
Patch Set: Fix Created 4 years, 1 month 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
Index: tools/json_schema_compiler/test/arrays_unittest.cc
diff --git a/tools/json_schema_compiler/test/arrays_unittest.cc b/tools/json_schema_compiler/test/arrays_unittest.cc
index 939f685e1f6b0c16463d598088c0960e197cc5b7..69d46dcc3b0aa5deea19170e9760917da1ec7e88 100644
--- a/tools/json_schema_compiler/test/arrays_unittest.cc
+++ b/tools/json_schema_compiler/test/arrays_unittest.cc
@@ -43,7 +43,7 @@ static std::unique_ptr<base::DictionaryValue> CreateBasicArrayTypeDictionary() {
std::unique_ptr<base::DictionaryValue> CreateItemValue(int val) {
std::unique_ptr<base::DictionaryValue> value(new base::DictionaryValue());
- value->Set("val", new base::FundamentalValue(val));
+ value->Set("val", new base::Value(val));
return value;
}
« no previous file with comments | « tools/json_schema_compiler/test/any_unittest.cc ('k') | tools/json_schema_compiler/test/choices_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698