Index: chromeos/network/host_resolver_impl_chromeos_unittest.cc |
diff --git a/chromeos/network/host_resolver_impl_chromeos_unittest.cc b/chromeos/network/host_resolver_impl_chromeos_unittest.cc |
index 0ec0fb46410e53bb467eac246f4f558b3ed1a238..ca4839485f8a45c23eb19d84f0a71ca6c496b903 100644 |
--- a/chromeos/network/host_resolver_impl_chromeos_unittest.cc |
+++ b/chromeos/network/host_resolver_impl_chromeos_unittest.cc |
@@ -127,11 +127,11 @@ class HostResolverImplChromeOSTest : public testing::Test { |
const std::string& method, |
const std::string& address) { |
DBusThreadManager::Get()->GetShillIPConfigClient()->SetProperty( |
- dbus::ObjectPath(path), shill::kAddressProperty, |
- base::StringValue(address), base::Bind(&DoNothingWithCallStatus)); |
+ dbus::ObjectPath(path), shill::kAddressProperty, base::Value(address), |
+ base::Bind(&DoNothingWithCallStatus)); |
DBusThreadManager::Get()->GetShillIPConfigClient()->SetProperty( |
- dbus::ObjectPath(path), shill::kMethodProperty, |
- base::StringValue(method), base::Bind(&DoNothingWithCallStatus)); |
+ dbus::ObjectPath(path), shill::kMethodProperty, base::Value(method), |
+ base::Bind(&DoNothingWithCallStatus)); |
} |
std::unique_ptr<NetworkStateHandler> network_state_handler_; |