| Index: chromeos/network/shill_property_handler.cc
|
| diff --git a/chromeos/network/shill_property_handler.cc b/chromeos/network/shill_property_handler.cc
|
| index d913d30ce2b588e41d905b42a4302c86ce0193c7..74ea70acdb581e8203b4baaecb776813793bc7d1 100644
|
| --- a/chromeos/network/shill_property_handler.cc
|
| +++ b/chromeos/network/shill_property_handler.cc
|
| @@ -202,7 +202,7 @@ void ShillPropertyHandler::SetProhibitedTechnologies(
|
| // Send updated prohibited technology list to shill.
|
| const std::string prohibited_list =
|
| base::JoinString(prohibited_technologies, ",");
|
| - base::StringValue value(prohibited_list);
|
| + base::Value value(prohibited_list);
|
| shill_manager_->SetProperty(
|
| "ProhibitedTechnologies", value, base::Bind(&base::DoNothing),
|
| base::Bind(&network_handler::ShillErrorCallbackFunction,
|
| @@ -212,7 +212,7 @@ void ShillPropertyHandler::SetProhibitedTechnologies(
|
|
|
| void ShillPropertyHandler::SetCheckPortalList(
|
| const std::string& check_portal_list) {
|
| - base::StringValue value(check_portal_list);
|
| + base::Value value(check_portal_list);
|
| shill_manager_->SetProperty(
|
| shill::kCheckPortalListProperty, value, base::Bind(&base::DoNothing),
|
| base::Bind(&network_handler::ShillErrorCallbackFunction,
|
|
|