Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1255)

Unified Diff: components/arc/bluetooth/arc_bluetooth_bridge.cc

Issue 2223203002: arc: bluetooth: Add/Remove BT observer only when ARC is ready (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix #2 comment Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 dbc6747b662299696c5c1ebb56d1a9f069e3b04c..dbe73b9f903d39aba55c5d85dee4d63793ee1310 100644
--- a/components/arc/bluetooth/arc_bluetooth_bridge.cc
+++ b/components/arc/bluetooth/arc_bluetooth_bridge.cc
@@ -180,13 +180,12 @@ namespace arc {
ArcBluetoothBridge::ArcBluetoothBridge(ArcBridgeService* bridge_service)
: ArcService(bridge_service), binding_(this), weak_factory_(this) {
if (BluetoothAdapterFactory::IsBluetoothAdapterAvailable()) {
rkc 2016/08/08 21:58:29 This is a useless check. This only checks if Bluet
puthik_chromium 2016/08/08 22:33:32 It's out of scope of this CL so I will leave it he
- VLOG(1) << "registering bluetooth adapter";
+ VLOG(1) << "Registering bluetooth adapter.";
BluetoothAdapterFactory::GetAdapter(base::Bind(
&ArcBluetoothBridge::OnAdapterInitialized, weak_factory_.GetWeakPtr()));
} else {
- VLOG(1) << "no bluetooth adapter available";
+ VLOG(1) << "No bluetooth adapter available.";
}
-
arc_bridge_service()->bluetooth()->AddObserver(this);
}
@@ -207,7 +206,14 @@ void ArcBluetoothBridge::OnAdapterInitialized(
// so our adapter uses BlueZ.
bluetooth_adapter_ =
static_cast<bluez::BluetoothAdapterBlueZ*>(adapter.get());
- bluetooth_adapter_->AddObserver(this);
+
+ // Arc instance is ready before Bluetooth adapter.
+ // We should register ourselves to bluetooth observer here.
+ if (!bluetooth_observer_flag_ &&
Luis Héctor Chávez 2016/08/08 21:54:16 s/bluetooth_observer_flag_/bluetooth_adapter_->Has
puthik_chromium 2016/08/08 22:33:32 There is no HasObserver(this) for bluetooth_adapte
rkc 2016/08/08 22:36:32 Yes, it is trivial to add it though.
puthik_chromium 2016/08/08 22:46:51 Done.
+ arc_bridge_service()->bluetooth()->instance()) {
+ bluetooth_observer_flag_ = true;
+ bluetooth_adapter_->AddObserver(this);
+ }
}
void ArcBluetoothBridge::OnInstanceReady() {
@@ -218,7 +224,21 @@ void ArcBluetoothBridge::OnInstanceReady() {
<< "but no bluetooth instance found";
return;
}
+
bluetooth_instance->Init(binding_.CreateInterfacePtrAndBind());
+
+ // Bluetooth adapter is ready before Arc instance.
+ // We should register ourselves to bluetooth observer here.
rkc 2016/08/08 21:58:29 This comment isn't clear. Instead, it should read
puthik_chromium 2016/08/08 22:33:32 Done.
+ if (!bluetooth_observer_flag_ && bluetooth_adapter_) {
+ bluetooth_observer_flag_ = true;
+ bluetooth_adapter_->AddObserver(this);
+ }
+}
+
+void ArcBluetoothBridge::OnInstanceClosed() {
+ if (bluetooth_observer_flag_ && bluetooth_adapter_)
+ bluetooth_adapter_->RemoveObserver(this);
+ bluetooth_observer_flag_ = false;
}
void ArcBluetoothBridge::AdapterPoweredChanged(BluetoothAdapter* adapter,

Powered by Google App Engine
This is Rietveld 408576698