Index: chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc |
diff --git a/chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc b/chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc |
index 4254352f12a091b889f0a44b4774113e3fe1cb93..278587eadd3118b0a1e3c2f9ecda9b3e6928b2c0 100644 |
--- a/chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc |
+++ b/chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc |
@@ -1151,8 +1151,9 @@ void InternetOptionsHandler::SetAutoConnectCallback( |
} |
content::RecordAction(base::UserMetricsAction("Options_NetworkAutoConnect")); |
bool auto_connect = auto_connect_str == kTagTrue; |
- SetNetworkProperty(service_path, shill::kAutoConnectProperty, |
- base::Value::CreateBooleanValue(auto_connect)); |
+ SetNetworkProperty(service_path, |
+ shill::kAutoConnectProperty, |
+ new base::FundamentalValue(auto_connect)); |
} |
void InternetOptionsHandler::SetIPConfigCallback(const base::ListValue* args) { |