| Index: chromeos/network/network_state.cc
|
| diff --git a/chromeos/network/network_state.cc b/chromeos/network/network_state.cc
|
| index 8355028fb5f151469987ba26a77ebd82bb62a958..4ab8b1782422edaeb0495968920c633d67cdbb79 100644
|
| --- a/chromeos/network/network_state.cc
|
| +++ b/chromeos/network/network_state.cc
|
| @@ -75,6 +75,8 @@ bool NetworkState::PropertyChanged(const std::string& key,
|
| return GetStringValue(key, value, &device_path_);
|
| } else if (key == flimflam::kGuidProperty) {
|
| return GetStringValue(key, value, &guid_);
|
| + } else if (key == flimflam::kProfileProperty) {
|
| + return GetStringValue(key, value, &profile_path_);
|
| } else if (key == shill::kActivateOverNonCellularNetworkProperty) {
|
| return GetBooleanValue(key, value, &activate_over_non_cellular_networks_);
|
| } else if (key == shill::kOutOfCreditsProperty) {
|
| @@ -121,6 +123,8 @@ void NetworkState::GetProperties(base::DictionaryValue* dictionary) const {
|
| dictionary->SetStringWithoutPathExpansion(flimflam::kDeviceProperty,
|
| device_path());
|
| dictionary->SetStringWithoutPathExpansion(flimflam::kGuidProperty, guid());
|
| + dictionary->SetStringWithoutPathExpansion(flimflam::kProfileProperty,
|
| + profile_path());
|
| dictionary->SetBooleanWithoutPathExpansion(
|
| shill::kActivateOverNonCellularNetworkProperty,
|
| activate_over_non_cellular_networks());
|
|
|