summaryrefslogtreecommitdiffstats
path: root/components/pairing/bluetooth_controller_pairing_controller.cc
diff options
context:
space:
mode:
Diffstat (limited to 'components/pairing/bluetooth_controller_pairing_controller.cc')
-rw-r--r--components/pairing/bluetooth_controller_pairing_controller.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/components/pairing/bluetooth_controller_pairing_controller.cc b/components/pairing/bluetooth_controller_pairing_controller.cc
index bb01dd7..cce1d67 100644
--- a/components/pairing/bluetooth_controller_pairing_controller.cc
+++ b/components/pairing/bluetooth_controller_pairing_controller.cc
@@ -56,12 +56,12 @@ void BluetoothControllerPairingController::Reset() {
controller_device_id_.clear();
discovery_session_.reset();
- if (socket_) {
+ if (socket_.get()) {
socket_->Close();
socket_ = NULL;
}
- if (adapter_) {
+ if (adapter_.get()) {
adapter_->RemoveObserver(this);
adapter_ = NULL;
}
@@ -104,7 +104,7 @@ void BluetoothControllerPairingController::OnSetPowered() {
void BluetoothControllerPairingController::OnGetAdapter(
scoped_refptr<device::BluetoothAdapter> adapter) {
DCHECK(thread_checker_.CalledOnValidThread());
- DCHECK(!adapter_);
+ DCHECK(!adapter_.get());
adapter_ = adapter;
adapter_->AddObserver(this);