diff options
Diffstat (limited to 'chromeos/network/network_device_handler.cc')
-rw-r--r-- | chromeos/network/network_device_handler.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/chromeos/network/network_device_handler.cc b/chromeos/network/network_device_handler.cc index c480073..ab456eb 100644 --- a/chromeos/network/network_device_handler.cc +++ b/chromeos/network/network_device_handler.cc @@ -33,11 +33,11 @@ std::string GetErrorNameForShillError(const std::string& shill_error_name) { return NetworkDeviceHandler::kErrorFailure; if (shill_error_name == kShillErrorNotSupported) return NetworkDeviceHandler::kErrorNotSupported; - if (shill_error_name == flimflam::kErrorIncorrectPinMsg) + if (shill_error_name == shill::kErrorIncorrectPinMsg) return NetworkDeviceHandler::kErrorIncorrectPin; - if (shill_error_name == flimflam::kErrorPinBlockedMsg) + if (shill_error_name == shill::kErrorPinBlockedMsg) return NetworkDeviceHandler::kErrorPinBlocked; - if (shill_error_name == flimflam::kErrorPinRequiredMsg) + if (shill_error_name == shill::kErrorPinRequiredMsg) return NetworkDeviceHandler::kErrorPinRequired; return NetworkDeviceHandler::kErrorUnknown; } @@ -73,13 +73,13 @@ void RefreshIPConfigsCallback( const base::DictionaryValue& properties) { const ListValue* ip_configs; if (!properties.GetListWithoutPathExpansion( - flimflam::kIPConfigsProperty, &ip_configs)) { + shill::kIPConfigsProperty, &ip_configs)) { NET_LOG_ERROR("RequestRefreshIPConfigs Failed", device_path); network_handler::ShillErrorCallbackFunction( "RequestRefreshIPConfigs Failed", device_path, error_callback, - std::string("Missing ") + flimflam::kIPConfigsProperty, ""); + std::string("Missing ") + shill::kIPConfigsProperty, ""); return; } |