| Index: chrome/browser/ui/webui/chromeos/network_ui.cc
|
| diff --git a/chrome/browser/ui/webui/chromeos/network_ui.cc b/chrome/browser/ui/webui/chromeos/network_ui.cc
|
| index ac5352e47210a9b485d21fd50142626bb32e126c..5cdb9f79d4072e2ba2a6a918e17011ef882f36e3 100644
|
| --- a/chrome/browser/ui/webui/chromeos/network_ui.cc
|
| +++ b/chrome/browser/ui/webui/chromeos/network_ui.cc
|
| @@ -64,7 +64,7 @@ void SetDeviceProperties(base::DictionaryValue* dictionary) {
|
| ip_configs->Append(iter.value().CreateDeepCopy());
|
| }
|
| device_dictionary->SetWithoutPathExpansion(shill::kIPConfigsProperty,
|
| - ip_configs.release());
|
| + std::move(ip_configs));
|
| }
|
| if (!device_dictionary->empty())
|
| dictionary->Set(shill::kDeviceProperty, std::move(device_dictionary));
|
|
|