Update browser code to use new enum names for WebConnectionType

1) https://codereview.chromium.org/1333613004
2) https://codereview.chromium.org/1310343010 (this)
3) https://codereview.chromium.org/1326543004

Review URL: https://codereview.chromium.org/1310343010

Cr-Commit-Position: refs/heads/master@{#348283}
diff --git a/content/renderer/net_info_helper.cc b/content/renderer/net_info_helper.cc
index 84b9d24a..4db6641 100644
--- a/content/renderer/net_info_helper.cc
+++ b/content/renderer/net_info_helper.cc
@@ -11,23 +11,23 @@
     net::NetworkChangeNotifier::ConnectionType net_type) {
   switch (net_type) {
     case net::NetworkChangeNotifier::CONNECTION_UNKNOWN:
-      return blink::ConnectionTypeUnknown;
+      return blink::WebConnectionTypeUnknown;
     case net::NetworkChangeNotifier::CONNECTION_ETHERNET:
-      return blink::ConnectionTypeEthernet;
+      return blink::WebConnectionTypeEthernet;
     case net::NetworkChangeNotifier::CONNECTION_WIFI:
-      return blink::ConnectionTypeWifi;
+      return blink::WebConnectionTypeWifi;
     case net::NetworkChangeNotifier::CONNECTION_NONE:
-      return blink::ConnectionTypeNone;
+      return blink::WebConnectionTypeNone;
     case net::NetworkChangeNotifier::CONNECTION_2G:
     case net::NetworkChangeNotifier::CONNECTION_3G:
     case net::NetworkChangeNotifier::CONNECTION_4G:
-      return blink::ConnectionTypeCellular;
+      return blink::WebConnectionTypeCellular;
     case net::NetworkChangeNotifier::CONNECTION_BLUETOOTH:
-      return blink::ConnectionTypeBluetooth;
+      return blink::WebConnectionTypeBluetooth;
   }
 
   NOTREACHED();
-  return blink::ConnectionTypeNone;
+  return blink::WebConnectionTypeNone;
 }
 
 }  // namespace content