| Index: chromeos/network/network_state.cc
|
| diff --git a/chromeos/network/network_state.cc b/chromeos/network/network_state.cc
|
| index 7c85627aebc317013c0ed3fd0e8b571492c30e9c..cc27a20d835776d74a0d0d6de4ae2de4ec7ee6d1 100644
|
| --- a/chromeos/network/network_state.cc
|
| +++ b/chromeos/network/network_state.cc
|
| @@ -117,8 +117,6 @@ bool NetworkState::PropertyChanged(const std::string& key,
|
| if (error_ == kErrorUnknown)
|
| error_.clear();
|
| return true;
|
| - } else if (key == shill::kErrorDetailsProperty) {
|
| - return GetStringValue(key, value, &error_details_);
|
| } else if (key == IPConfigProperty(flimflam::kAddressProperty)) {
|
| return GetStringValue(key, value, &ip_address_);
|
| } else if (key == IPConfigProperty(flimflam::kGatewayProperty)) {
|
| @@ -245,8 +243,6 @@ void NetworkState::GetProperties(base::DictionaryValue* dictionary) const {
|
|
|
| dictionary->SetStringWithoutPathExpansion(flimflam::kErrorProperty,
|
| error_);
|
| - dictionary->SetStringWithoutPathExpansion(shill::kErrorDetailsProperty,
|
| - error_details_);
|
|
|
| // IPConfig properties
|
| base::DictionaryValue* ipconfig_properties = new base::DictionaryValue;
|
|
|