| Index: chromeos/dbus/fake_shill_profile_client.cc | 
| diff --git a/chromeos/dbus/fake_shill_profile_client.cc b/chromeos/dbus/fake_shill_profile_client.cc | 
| index fef353d30b1a3bf1eff7ce80ca1235867c7c1cce..9a5fe1a3c0522195735e597ff2458e1fabf3e7de 100644 | 
| --- a/chromeos/dbus/fake_shill_profile_client.cc | 
| +++ b/chromeos/dbus/fake_shill_profile_client.cc | 
| @@ -109,7 +109,7 @@ void FakeShillProfileClient::DeleteEntry(const dbus::ObjectPath& profile_path, | 
| return; | 
| } | 
|  | 
| -  base::StringValue profile_path_value(""); | 
| +  base::Value profile_path_value(""); | 
| DBusThreadManager::Get()->GetShillServiceClient()->GetTestInterface()-> | 
| SetServiceProperty(entry_path, | 
| shill::kProfileProperty, | 
| @@ -194,7 +194,7 @@ bool FakeShillProfileClient::AddOrUpdateServiceImpl( | 
| service_properties->GetStringWithoutPathExpansion(shill::kProfileProperty, | 
| &service_profile_path); | 
| if (service_profile_path.empty()) { | 
| -    base::StringValue profile_path_value(profile_path); | 
| +    base::Value profile_path_value(profile_path); | 
| service_test->SetServiceProperty(service_path, | 
| shill::kProfileProperty, | 
| profile_path_value); | 
|  |