Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(151)

Unified Diff: chromeos/network/shill_property_handler.cc

Issue 2664753002: Remove base::StringValue (Closed)
Patch Set: Rebase Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chromeos/network/proxy/proxy_config_handler.cc ('k') | chromeos/network/shill_property_handler_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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,
« no previous file with comments | « chromeos/network/proxy/proxy_config_handler.cc ('k') | chromeos/network/shill_property_handler_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698