Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / tools / json_schema_compiler / test / additional_properties_unittest.cc
index ac0a0f2..dc980af 100644 (file)
@@ -11,8 +11,8 @@ TEST(JsonSchemaCompilerAdditionalPropertiesTest,
     AdditionalPropertiesTypePopulate) {
   {
     scoped_ptr<base::ListValue> list_value(new base::ListValue());
-    list_value->Append(base::Value::CreateStringValue("asdf"));
-    list_value->Append(base::Value::CreateIntegerValue(4));
+    list_value->Append(new base::StringValue("asdf"));
+    list_value->Append(new base::FundamentalValue(4));
     scoped_ptr<base::DictionaryValue> type_value(new base::DictionaryValue());
     type_value->SetString("string", "value");
     type_value->SetInteger("other", 9);