Index: components/arc/bluetooth/bluetooth_type_converters_unittest.cc |
diff --git a/components/arc/bluetooth/bluetooth_type_converters_unittest.cc b/components/arc/bluetooth/bluetooth_type_converters_unittest.cc |
index 79715566c0192f86892dba8f4a12f8b32216e82e..45c0106c5235964fd33ed2f5e139c9a76f190639 100644 |
--- a/components/arc/bluetooth/bluetooth_type_converters_unittest.cc |
+++ b/components/arc/bluetooth/bluetooth_type_converters_unittest.cc |
@@ -114,7 +114,7 @@ TEST(BluetoothTypeConvertorTest, ConvertMojoValueAttributeToBlueZAttribute) { |
nulltypeAttributeMojo->type = |
bluez::BluetoothServiceAttributeValueBlueZ::NULLTYPE; |
nulltypeAttributeMojo->type_size = 0; |
- nulltypeAttributeMojo->value.Append(base::Value::CreateNullValue()); |
+ nulltypeAttributeMojo->value.Append(base::MakeUnique<base::Value>()); |
auto nulltypeAttributeBlueZ = |
nulltypeAttributeMojo.To<bluez::BluetoothServiceAttributeValueBlueZ>(); |
@@ -287,7 +287,7 @@ TEST(BluetoothTypeConvertorTest, |
auto sequenceNoData = arc::mojom::BluetoothSdpAttribute::New(); |
sequenceNoData->type = bluez::BluetoothServiceAttributeValueBlueZ::SEQUENCE; |
sequenceNoData->type_size = 0; |
- sequenceNoData->value.Append(base::Value::CreateNullValue()); |
+ sequenceNoData->value.Append(base::MakeUnique<base::Value>()); |
auto sequenceNoDataBlueZ = |
sequenceNoData.To<bluez::BluetoothServiceAttributeValueBlueZ>(); |