| Index: tools/json_schema_compiler/test/any_unittest.cc
|
| diff --git a/tools/json_schema_compiler/test/any_unittest.cc b/tools/json_schema_compiler/test/any_unittest.cc
|
| index 039bd154bd52ae7a74020a4338601e1b6fb67f7f..d10a3eb4ef486c1881933103600602094dceb08a 100644
|
| --- a/tools/json_schema_compiler/test/any_unittest.cc
|
| +++ b/tools/json_schema_compiler/test/any_unittest.cc
|
| @@ -38,7 +38,7 @@ TEST(JsonSchemaCompilerAnyTest, OptionalAnyParamsCreate) {
|
| }
|
| {
|
| scoped_ptr<base::ListValue> params_value(new base::ListValue());
|
| - scoped_ptr<base::Value> param(base::Value::CreateStringValue("asdf"));
|
| + scoped_ptr<base::Value> param(new base::StringValue("asdf"));
|
| params_value->Append(param->DeepCopy());
|
| scoped_ptr<OptionalAny::Params> params(
|
| OptionalAny::Params::Create(*params_value));
|
|
|