Index: chromeos/network/network_state.cc |
diff --git a/chromeos/network/network_state.cc b/chromeos/network/network_state.cc |
index e0ac1961b877d4d399b83c11b57673ed01993264..427ab841d27d9e60b7f5608e276609c3cfe2a13c 100644 |
--- a/chromeos/network/network_state.cc |
+++ b/chromeos/network/network_state.cc |
@@ -232,6 +232,15 @@ void NetworkState::GetProperties(base::DictionaryValue* dictionary) const { |
cellular_out_of_credits_); |
} |
+void NetworkState::GetConfigProperties( |
+ base::DictionaryValue* dictionary) const { |
+ dictionary->SetStringWithoutPathExpansion(flimflam::kNameProperty, name()); |
+ dictionary->SetStringWithoutPathExpansion(flimflam::kTypeProperty, type()); |
+ dictionary->SetStringWithoutPathExpansion(flimflam::kSecurityProperty, |
+ security()); |
+ dictionary->SetStringWithoutPathExpansion(flimflam::kGuidProperty, guid()); |
+} |
+ |
bool NetworkState::IsConnectedState() const { |
return StateIsConnected(connection_state_); |
} |