Commit d1d0d9e3 authored by jkarlin@chromium.org's avatar jkarlin@chromium.org

Support Bluetooth network connection type on ChromeOS.

BUG=378785

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

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@275473 0039d316-1c4b-4281-b951-d872f2087c98
parent 42066d50
...@@ -202,6 +202,8 @@ NetworkChangeNotifierChromeos::ConnectionTypeFromShill( ...@@ -202,6 +202,8 @@ NetworkChangeNotifierChromeos::ConnectionTypeFromShill(
return CONNECTION_WIFI; return CONNECTION_WIFI;
else if (type == shill::kTypeWimax) else if (type == shill::kTypeWimax)
return CONNECTION_4G; return CONNECTION_4G;
else if (type == shill::kTypeBluetooth)
return CONNECTION_BLUETOOTH;
if (type != shill::kTypeCellular) if (type != shill::kTypeCellular)
return CONNECTION_UNKNOWN; return CONNECTION_UNKNOWN;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment