OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "device/bluetooth/bluetooth_adapter_bluez.h" | 5 #include "device/bluetooth/bluetooth_adapter_bluez.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 #include <utility> | 8 #include <utility> |
9 | 9 |
10 #include "base/bind.h" | 10 #include "base/bind.h" |
(...skipping 920 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
931 DCHECK_EQ(service->GetAdapter(), this); | 931 DCHECK_EQ(service->GetAdapter(), this); |
932 | 932 |
933 FOR_EACH_OBSERVER(BluetoothAdapter::Observer, observers_, | 933 FOR_EACH_OBSERVER(BluetoothAdapter::Observer, observers_, |
934 GattServiceChanged(this, service)); | 934 GattServiceChanged(this, service)); |
935 } | 935 } |
936 | 936 |
937 void BluetoothAdapterBlueZ::NotifyGattServicesDiscovered( | 937 void BluetoothAdapterBlueZ::NotifyGattServicesDiscovered( |
938 BluetoothDeviceBlueZ* device) { | 938 BluetoothDeviceBlueZ* device) { |
939 DCHECK(device->adapter_ == this); | 939 DCHECK(device->adapter_ == this); |
940 | 940 |
941 device->SetGattServicesDiscoveryComplete(true); | |
942 FOR_EACH_OBSERVER(BluetoothAdapter::Observer, observers_, | 941 FOR_EACH_OBSERVER(BluetoothAdapter::Observer, observers_, |
943 GattServicesDiscovered(this, device)); | 942 GattServicesDiscovered(this, device)); |
944 } | 943 } |
945 | 944 |
946 void BluetoothAdapterBlueZ::NotifyGattDiscoveryComplete( | 945 void BluetoothAdapterBlueZ::NotifyGattDiscoveryComplete( |
947 BluetoothRemoteGattServiceBlueZ* service) { | 946 BluetoothRemoteGattServiceBlueZ* service) { |
948 DCHECK_EQ(service->GetAdapter(), this); | 947 DCHECK_EQ(service->GetAdapter(), this); |
949 | 948 |
950 FOR_EACH_OBSERVER(BluetoothAdapter::Observer, observers_, | 949 FOR_EACH_OBSERVER(BluetoothAdapter::Observer, observers_, |
951 GattDiscoveryCompleteForService(this, service)); | 950 GattDiscoveryCompleteForService(this, service)); |
(...skipping 553 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1505 | 1504 |
1506 // If the queued request resulted in a pending call, then let it | 1505 // If the queued request resulted in a pending call, then let it |
1507 // asynchonously process the remaining queued requests once the pending | 1506 // asynchonously process the remaining queued requests once the pending |
1508 // call returns. | 1507 // call returns. |
1509 if (discovery_request_pending_) | 1508 if (discovery_request_pending_) |
1510 return; | 1509 return; |
1511 } | 1510 } |
1512 } | 1511 } |
1513 | 1512 |
1514 } // namespace bluez | 1513 } // namespace bluez |
OLD | NEW |