| Index: chromeos/dbus/shill_device_client_unittest.cc
|
| diff --git a/chromeos/dbus/shill_device_client_unittest.cc b/chromeos/dbus/shill_device_client_unittest.cc
|
| index 2265204016a0ce04bf277658241180b16cd8421f..f0d04542bc87068e86b8be19fa7f0c4ba3b35b12 100644
|
| --- a/chromeos/dbus/shill_device_client_unittest.cc
|
| +++ b/chromeos/dbus/shill_device_client_unittest.cc
|
| @@ -83,7 +83,7 @@ TEST_F(ShillDeviceClientTest, PropertyChanged) {
|
| writer.AppendVariantOfBool(kValue);
|
|
|
| // Set expectations.
|
| - const base::FundamentalValue value(kValue);
|
| + const base::Value value(kValue);
|
| MockPropertyChangeObserver observer;
|
| EXPECT_CALL(observer,
|
| OnPropertyChanged(shill::kCellularAllowRoamingProperty,
|
| @@ -127,7 +127,7 @@ TEST_F(ShillDeviceClientTest, GetProperties) {
|
| // Set expectations.
|
| base::DictionaryValue value;
|
| value.SetWithoutPathExpansion(shill::kCellularAllowRoamingProperty,
|
| - new base::FundamentalValue(kValue));
|
| + new base::Value(kValue));
|
| PrepareForMethodCall(shill::kGetPropertiesFunction,
|
| base::Bind(&ExpectNoArgument),
|
| response.get());
|
| @@ -159,7 +159,7 @@ TEST_F(ShillDeviceClientTest, SetProperty) {
|
| std::unique_ptr<dbus::Response> response(dbus::Response::CreateEmpty());
|
|
|
| // Set expectations.
|
| - const base::FundamentalValue value(kValue);
|
| + const base::Value value(kValue);
|
| PrepareForMethodCall(shill::kSetPropertyFunction,
|
| base::Bind(&ExpectStringAndValueArguments,
|
| shill::kCellularAllowRoamingProperty,
|
|
|