| 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 278587eadd3118b0a1e3c2f9ecda9b3e6928b2c0..a31fe74df6be92f7602156cd1ee46435fe0666f9 100644
|
| --- a/chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc
|
| +++ b/chrome/browser/ui/webui/options/chromeos/internet_options_handler.cc
|
| @@ -1136,8 +1136,9 @@ void InternetOptionsHandler::SetPreferNetworkCallback(
|
| }
|
| content::RecordAction(base::UserMetricsAction("Options_NetworkSetPrefer"));
|
| int priority = (prefer_network_str == kTagTrue) ? kPreferredPriority : 0;
|
| - SetNetworkProperty(service_path, shill::kPriorityProperty,
|
| - base::Value::CreateIntegerValue(priority));
|
| + SetNetworkProperty(service_path,
|
| + shill::kPriorityProperty,
|
| + new base::FundamentalValue(priority));
|
| }
|
|
|
| void InternetOptionsHandler::SetAutoConnectCallback(
|
|
|