Index: chromeos/network/network_state.cc |
diff --git a/chromeos/network/network_state.cc b/chromeos/network/network_state.cc |
index f9342f95830c48f814bd1f5e7fe200ad110214ae..f48ea0e5cb19cff86630905902b735e076bb7e78 100644 |
--- a/chromeos/network/network_state.cc |
+++ b/chromeos/network/network_state.cc |
@@ -218,10 +218,10 @@ void NetworkState::GetProperties(base::DictionaryValue* dictionary) const { |
error_); |
dictionary->SetStringWithoutPathExpansion(shill::kErrorDetailsProperty, |
error_details_); |
- base::DictionaryValue* ipconfig_properties = new DictionaryValue; |
+ base::DictionaryValue* ipconfig_properties = new base::DictionaryValue; |
ipconfig_properties->SetStringWithoutPathExpansion(flimflam::kAddressProperty, |
ip_address_); |
- base::ListValue* name_servers = new ListValue; |
+ base::ListValue* name_servers = new base::ListValue; |
name_servers->AppendStrings(dns_servers_); |
ipconfig_properties->SetWithoutPathExpansion(flimflam::kNameServersProperty, |
name_servers); |