| Index: chromeos/network/managed_network_configuration_handler_impl.cc
|
| diff --git a/chromeos/network/managed_network_configuration_handler_impl.cc b/chromeos/network/managed_network_configuration_handler_impl.cc
|
| index c91cfdaadf292386f1a49c46e3db26bf8ef0024d..d3b45256ed2f1662c6b867371d6bbf58600721ce 100644
|
| --- a/chromeos/network/managed_network_configuration_handler_impl.cc
|
| +++ b/chromeos/network/managed_network_configuration_handler_impl.cc
|
| @@ -442,8 +442,8 @@ void ManagedNetworkConfigurationHandlerImpl::SetPolicy(
|
|
|
| for (base::ListValue::const_iterator it = network_configs_onc.begin();
|
| it != network_configs_onc.end(); ++it) {
|
| - base::DictionaryValue* network = NULL;
|
| - (*it)->GetAsDictionary(&network);
|
| + const base::DictionaryValue* network = NULL;
|
| + it->GetAsDictionary(&network);
|
| DCHECK(network);
|
|
|
| std::string guid;
|
|
|