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

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

Issue 383263005: Remove more CreateIntegerValue calls. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: s/SetBoolean/SetInteger Created 6 years, 5 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
Index: tools/json_schema_compiler/test/objects_unittest.cc
diff --git a/tools/json_schema_compiler/test/objects_unittest.cc b/tools/json_schema_compiler/test/objects_unittest.cc
index c0af2e12c6a998ce7b2604aa29f99f38ece31d5d..485e1d6055ea74eff66b21d79db4f0a9c6a79394 100644
--- a/tools/json_schema_compiler/test/objects_unittest.cc
+++ b/tools/json_schema_compiler/test/objects_unittest.cc
@@ -16,7 +16,7 @@ TEST(JsonSchemaCompilerObjectsTest, ObjectParamParamsCreate) {
strings->Append(base::Value::CreateStringValue("two"));
scoped_ptr<base::DictionaryValue> info_value(new base::DictionaryValue());
info_value->Set("strings", strings.release());
- info_value->Set("integer", base::Value::CreateIntegerValue(5));
+ info_value->Set("integer", new base::FundamentalValue(5));
info_value->Set("boolean", base::Value::CreateBooleanValue(true));
scoped_ptr<base::ListValue> params_value(new base::ListValue());
@@ -36,7 +36,7 @@ TEST(JsonSchemaCompilerObjectsTest, ObjectParamParamsCreate) {
strings->Append(base::Value::CreateStringValue("two"));
scoped_ptr<base::DictionaryValue> info_value(new base::DictionaryValue());
info_value->Set("strings", strings.release());
- info_value->Set("integer", base::Value::CreateIntegerValue(5));
+ info_value->Set("integer", new base::FundamentalValue(5));
scoped_ptr<base::ListValue> params_value(new base::ListValue());
params_value->Append(info_value.release());
« no previous file with comments | « tools/json_schema_compiler/test/idl_schemas_unittest.cc ('k') | tools/json_schema_compiler/test/simple_api_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698