| Index: chromeos/network/network_util.cc
|
| diff --git a/chromeos/network/network_util.cc b/chromeos/network/network_util.cc
|
| index 8b1ff441fa356d9c98f91ebd2f3f585f69e765ae..1acf6e584c5b296a37dc6d6a8742a26aa4496e3b 100644
|
| --- a/chromeos/network/network_util.cc
|
| +++ b/chromeos/network/network_util.cc
|
| @@ -93,15 +93,17 @@ int32 NetmaskToPrefixLength(const std::string& netmask) {
|
| return prefix_length;
|
| }
|
|
|
| -bool ParseCellularScanResults(
|
| - const ListValue& list, std::vector<CellularScanResult>* scan_results) {
|
| +bool ParseCellularScanResults(const base::ListValue& list,
|
| + std::vector<CellularScanResult>* scan_results) {
|
| scan_results->clear();
|
| scan_results->reserve(list.GetSize());
|
| - for (ListValue::const_iterator it = list.begin(); it != list.end(); ++it) {
|
| + for (base::ListValue::const_iterator it = list.begin();
|
| + it != list.end(); ++it) {
|
| if (!(*it)->IsType(base::Value::TYPE_DICTIONARY))
|
| return false;
|
| CellularScanResult scan_result;
|
| - const DictionaryValue* dict = static_cast<const DictionaryValue*>(*it);
|
| + const base::DictionaryValue* dict =
|
| + static_cast<const base::DictionaryValue*>(*it);
|
| // If the network id property is not present then this network cannot be
|
| // connected to so don't include it in the results.
|
| if (!dict->GetStringWithoutPathExpansion(shill::kNetworkIdProperty,
|
|
|