Chromium Code Reviews| Index: chromeos/network/network_state.cc |
| diff --git a/chromeos/network/network_state.cc b/chromeos/network/network_state.cc |
| index 1d916ee8ed7f17f0592aa0a4ef5b1f21fb9b3e12..0abe6133389de3e03c1a7c7668b14455404c1413 100644 |
| --- a/chromeos/network/network_state.cc |
| +++ b/chromeos/network/network_state.cc |
| @@ -212,6 +212,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_); |
|
pneubeck (no reviews)
2013/06/06 20:41:20
nit: security()
stevenjb
2013/06/07 03:44:58
Done.
|
| + dictionary->SetStringWithoutPathExpansion(flimflam::kGuidProperty, guid()); |
| +} |
| + |
| bool NetworkState::IsConnectedState() const { |
| return StateIsConnected(connection_state_); |
| } |