| Index: mojo/common/common_custom_types_unittest.cc
|
| diff --git a/mojo/common/common_custom_types_unittest.cc b/mojo/common/common_custom_types_unittest.cc
|
| index 36fc0423ddfcc7016907ff4fe2c3e17ef0aa1866..b0943783879967e50a947624e50cb1e64aa79506 100644
|
| --- a/mojo/common/common_custom_types_unittest.cc
|
| +++ b/mojo/common/common_custom_types_unittest.cc
|
| @@ -294,7 +294,7 @@ TEST_F(CommonCustomTypesTest, Value) {
|
| ASSERT_TRUE(ptr->BounceValue(input->CreateDeepCopy(), &output));
|
| EXPECT_TRUE(base::Value::Equals(input.get(), output.get()));
|
|
|
| - input = base::BinaryValue::CreateWithCopiedBuffer("mojo", 4);
|
| + input = base::Value::CreateWithCopiedBuffer("mojo", 4);
|
| ASSERT_TRUE(ptr->BounceValue(input->CreateDeepCopy(), &output));
|
| EXPECT_TRUE(base::Value::Equals(input.get(), output.get()));
|
|
|
| @@ -304,8 +304,7 @@ TEST_F(CommonCustomTypesTest, Value) {
|
| dict->SetString("string", "some string");
|
| dict->SetBoolean("nested.bool", true);
|
| dict->SetInteger("nested.int", 9);
|
| - dict->Set("some_binary",
|
| - base::BinaryValue::CreateWithCopiedBuffer("mojo", 4));
|
| + dict->Set("some_binary", base::Value::CreateWithCopiedBuffer("mojo", 4));
|
| dict->Set("null_value", base::MakeUnique<base::Value>());
|
| dict->SetIntegerWithoutPathExpansion("non_nested.int", 10);
|
| {
|
| @@ -327,7 +326,7 @@ TEST_F(CommonCustomTypesTest, Value) {
|
| list->AppendString("string");
|
| list->AppendDouble(42.1);
|
| list->AppendBoolean(true);
|
| - list->Append(base::BinaryValue::CreateWithCopiedBuffer("mojo", 4));
|
| + list->Append(base::Value::CreateWithCopiedBuffer("mojo", 4));
|
| list->Append(base::MakeUnique<base::Value>());
|
| {
|
| std::unique_ptr<base::DictionaryValue> list_dict(
|
|
|