| Index: components/arc/bluetooth/arc_bluetooth_bridge.cc
|
| diff --git a/components/arc/bluetooth/arc_bluetooth_bridge.cc b/components/arc/bluetooth/arc_bluetooth_bridge.cc
|
| index 97bca580d1292e8d2b92bc15b4303b998e000331..b63042df3eb48bf28aba89c34215d8577537a09d 100644
|
| --- a/components/arc/bluetooth/arc_bluetooth_bridge.cc
|
| +++ b/components/arc/bluetooth/arc_bluetooth_bridge.cc
|
| @@ -251,12 +251,12 @@ namespace arc {
|
|
|
| ArcBluetoothBridge::ArcBluetoothBridge(ArcBridgeService* bridge_service)
|
| : ArcService(bridge_service), binding_(this), weak_factory_(this) {
|
| - if (BluetoothAdapterFactory::IsBluetoothAdapterAvailable()) {
|
| + if (BluetoothAdapterFactory::IsBluetoothSupported()) {
|
| VLOG(1) << "Registering bluetooth adapter.";
|
| BluetoothAdapterFactory::GetAdapter(base::Bind(
|
| &ArcBluetoothBridge::OnAdapterInitialized, weak_factory_.GetWeakPtr()));
|
| } else {
|
| - VLOG(1) << "No bluetooth adapter available.";
|
| + VLOG(1) << "Bluetooth not supported.";
|
| }
|
| arc_bridge_service()->bluetooth()->AddObserver(this);
|
| }
|
|
|