| Index: chromeos/dbus/fake_shill_manager_client.cc
|
| diff --git a/chromeos/dbus/fake_shill_manager_client.cc b/chromeos/dbus/fake_shill_manager_client.cc
|
| index d21419f4e69dfe512cb0bb70c6b7b90dacaf2676..f524c1f7c0f62adbd73131c1d40a72cff7e771f8 100644
|
| --- a/chromeos/dbus/fake_shill_manager_client.cc
|
| +++ b/chromeos/dbus/fake_shill_manager_client.cc
|
| @@ -497,6 +497,7 @@ void FakeShillManagerClient::ServiceStateChanged(
|
| void FakeShillManagerClient::SortManagerServices(bool notify) {
|
| DVLOG(1) << "SortManagerServices";
|
| static const char* ordered_types[] = {shill::kTypeEthernet,
|
| + shill::kTypeEthernetEap,
|
| shill::kTypeWifi,
|
| shill::kTypeCellular,
|
| shill::kTypeWimax,
|
| @@ -876,6 +877,8 @@ base::ListValue* FakeShillManagerClient::GetListProperty(
|
| bool FakeShillManagerClient::TechnologyEnabled(const std::string& type) const {
|
| if (type == shill::kTypeVPN)
|
| return true; // VPN is always "enabled" since there is no associated device
|
| + if (type == shill::kTypeEthernetEap)
|
| + return true;
|
| bool enabled = false;
|
| const base::ListValue* technologies;
|
| if (stub_properties_.GetListWithoutPathExpansion(
|
|
|