summaryrefslogtreecommitdiff
path: root/connection_utils.cc
diff options
context:
space:
mode:
Diffstat (limited to 'connection_utils.cc')
-rw-r--r--connection_utils.cc8
1 files changed, 0 insertions, 8 deletions
diff --git a/connection_utils.cc b/connection_utils.cc
index aeb01634..5af7341f 100644
--- a/connection_utils.cc
+++ b/connection_utils.cc
@@ -32,10 +32,6 @@ ConnectionType ParseConnectionType(const std::string& type_str) {
return ConnectionType::kEthernet;
} else if (type_str == shill::kTypeWifi) {
return ConnectionType::kWifi;
- } else if (type_str == shill::kTypeWimax) {
- return ConnectionType::kWimax;
- } else if (type_str == shill::kTypeBluetooth) {
- return ConnectionType::kBluetooth;
} else if (type_str == shill::kTypeCellular) {
return ConnectionType::kCellular;
} else if (type_str == kTypeDisconnected) {
@@ -61,10 +57,6 @@ const char* StringForConnectionType(ConnectionType type) {
return shill::kTypeEthernet;
case ConnectionType::kWifi:
return shill::kTypeWifi;
- case ConnectionType::kWimax:
- return shill::kTypeWimax;
- case ConnectionType::kBluetooth:
- return shill::kTypeBluetooth;
case ConnectionType::kCellular:
return shill::kTypeCellular;
case ConnectionType::kDisconnected: