Index: chromeos/network/network_state.cc |
diff --git a/chromeos/network/network_state.cc b/chromeos/network/network_state.cc |
index 5a8914cec2a8582c6abcafd69cdeaa4689dfd16a..d9256f3d206057baad3a476f4f02fe3b77e67ba9 100644 |
--- a/chromeos/network/network_state.cc |
+++ b/chromeos/network/network_state.cc |
@@ -190,10 +190,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); |