| Index: Source/modules/netinfo/NetworkInformation.cpp
|
| diff --git a/Source/modules/netinfo/NetworkInformation.cpp b/Source/modules/netinfo/NetworkInformation.cpp
|
| index 0be19dab5d5c709249a4ff08fd809c80a9c56b15..7b979724a93bf4361dd6f35e2e6e04848194cbd7 100644
|
| --- a/Source/modules/netinfo/NetworkInformation.cpp
|
| +++ b/Source/modules/netinfo/NetworkInformation.cpp
|
| @@ -19,21 +19,21 @@ using namespace blink;
|
| String connectionTypeToString(WebConnectionType type)
|
| {
|
| switch (type) {
|
| - case ConnectionTypeCellular:
|
| + case WebConnectionTypeCellular:
|
| return "cellular";
|
| - case ConnectionTypeBluetooth:
|
| + case WebConnectionTypeBluetooth:
|
| return "bluetooth";
|
| - case ConnectionTypeEthernet:
|
| + case WebConnectionTypeEthernet:
|
| return "ethernet";
|
| - case ConnectionTypeWifi:
|
| + case WebConnectionTypeWifi:
|
| return "wifi";
|
| - case ConnectionTypeWimax:
|
| + case WebConnectionTypeWimax:
|
| return "wimax";
|
| - case ConnectionTypeOther:
|
| + case WebConnectionTypeOther:
|
| return "other";
|
| - case ConnectionTypeNone:
|
| + case WebConnectionTypeNone:
|
| return "none";
|
| - case ConnectionTypeUnknown:
|
| + case WebConnectionTypeUnknown:
|
| return "unknown";
|
| }
|
| ASSERT_NOT_REACHED();
|
|
|