| Index: chromeos/network/network_state.cc
|
| diff --git a/chromeos/network/network_state.cc b/chromeos/network/network_state.cc
|
| index 51002fd90377dc485b547c710b59e7e9174dcdf4..761a9859e78cf197b45d2152435f0486b2a22dc2 100644
|
| --- a/chromeos/network/network_state.cc
|
| +++ b/chromeos/network/network_state.cc
|
| @@ -42,6 +42,8 @@ bool NetworkState::PropertyChanged(const std::string& key,
|
| return GetStringValue(key, value, &guid_);
|
| } else if (key == shill::kActivateOverNonCellularNetworkProperty) {
|
| return GetBooleanValue(key, value, &activate_over_non_cellular_networks_);
|
| + } else if (key == shill::kOutOfCreditsProperty) {
|
| + return GetBooleanValue(key, value, &cellular_out_of_credits_);
|
| }
|
| return false;
|
| }
|
| @@ -71,6 +73,8 @@ void NetworkState::GetProperties(base::DictionaryValue* dictionary) const {
|
| dictionary->SetBooleanWithoutPathExpansion(
|
| shill::kActivateOverNonCellularNetworkProperty,
|
| activate_over_non_cellular_networks());
|
| + dictionary->SetBooleanWithoutPathExpansion(shill::kOutOfCreditsProperty,
|
| + cellular_out_of_credits());
|
| }
|
|
|
| bool NetworkState::IsConnectedState() const {
|
|
|