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 c89ad8a029d0c3e876f939c757de0e0f42ba50f2..79715566c0192f86892dba8f4a12f8b32216e82e 100644 |
--- a/components/arc/bluetooth/bluetooth_type_converters_unittest.cc |
+++ b/components/arc/bluetooth/bluetooth_type_converters_unittest.cc |
@@ -362,7 +362,7 @@ TEST(BluetoothTypeConvertorTest, ConvertBlueZValueAttributeToMojoAttribute) { |
std::string actualUUID; |
auto uuidAttributeBlueZ = bluez::BluetoothServiceAttributeValueBlueZ( |
bluez::BluetoothServiceAttributeValueBlueZ::UUID, sizeof(uint16_t), |
- base::MakeUnique<base::StringValue>(valueUUID)); |
+ base::MakeUnique<base::Value>(valueUUID)); |
auto uuidAttributeMojo = |
ConvertTo<arc::mojom::BluetoothSdpAttributePtr>(uuidAttributeBlueZ); |
@@ -379,7 +379,7 @@ TEST(BluetoothTypeConvertorTest, ConvertBlueZValueAttributeToMojoAttribute) { |
std::string actualString; |
auto stringAttributeBlueZ = bluez::BluetoothServiceAttributeValueBlueZ( |
bluez::BluetoothServiceAttributeValueBlueZ::STRING, valueString.length(), |
- base::MakeUnique<base::StringValue>(valueString)); |
+ base::MakeUnique<base::Value>(valueString)); |
auto stringAttributeMojo = |
ConvertTo<arc::mojom::BluetoothSdpAttributePtr>(stringAttributeBlueZ); |
@@ -400,7 +400,7 @@ TEST(BluetoothTypeConvertorTest, ConvertBlueZSequenceAttributeToMojoAttribute) { |
sequence(new bluez::BluetoothServiceAttributeValueBlueZ::Sequence()); |
sequence->push_back(bluez::BluetoothServiceAttributeValueBlueZ( |
bluez::BluetoothServiceAttributeValueBlueZ::UUID, sizeof(uint16_t), |
- base::MakeUnique<base::StringValue>(l2capUUID))); |
+ base::MakeUnique<base::Value>(l2capUUID))); |
sequence->push_back(bluez::BluetoothServiceAttributeValueBlueZ( |
bluez::BluetoothServiceAttributeValueBlueZ::UINT, sizeof(uint16_t), |
base::MakeUnique<base::Value>(l2capChannel))); |