Chromium Code Reviews| Index: device/bluetooth/bluetooth_remote_gatt_service_mac.h |
| diff --git a/device/bluetooth/bluetooth_remote_gatt_service_mac.h b/device/bluetooth/bluetooth_remote_gatt_service_mac.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..d2c568c7f203d143985527646d924ca7c3d3c6a3 |
| --- /dev/null |
| +++ b/device/bluetooth/bluetooth_remote_gatt_service_mac.h |
| @@ -0,0 +1,66 @@ |
| +// Copyright 2016 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef DEVICE_BLUETOOTH_BLUETOOTH_REMOTE_GATT_SERVICE_MAC_H_ |
| +#define DEVICE_BLUETOOTH_BLUETOOTH_REMOTE_GATT_SERVICE_MAC_H_ |
| + |
| +#include <stdint.h> |
| + |
| +#include <vector> |
| + |
| +#include "base/mac/scoped_nsobject.h" |
| +#include "device/bluetooth/bluetooth_remote_gatt_service.h" |
| + |
| +@class CBService; |
| + |
| +namespace device { |
| + |
| +class BluetoothDevice; |
| +class BluetoothGattCharacteristic; |
| +class BluetoothLowEnergyDeviceMac; |
| +class BluetoothTestMac; |
| + |
| +class DEVICE_BLUETOOTH_EXPORT BluetoothRemoteGattServiceMac |
| + : public BluetoothRemoteGattService { |
| + public: |
| + BluetoothRemoteGattServiceMac( |
| + BluetoothLowEnergyDeviceMac* bluetooth_device_mac, |
| + CBService* service, |
| + bool is_primary); |
| + ~BluetoothRemoteGattServiceMac() override; |
| + |
| + // BluetoothRemoteGattService override. |
| + std::string GetIdentifier() const override; |
| + BluetoothUUID GetUUID() const override; |
| + bool IsPrimary() const override; |
| + BluetoothDevice* GetDevice() const override; |
| + std::vector<BluetoothRemoteGattCharacteristic*> GetCharacteristics() |
| + const override; |
| + std::vector<BluetoothRemoteGattService*> GetIncludedServices() const override; |
| + BluetoothRemoteGattCharacteristic* GetCharacteristic( |
| + const std::string& identifier) const override; |
| + |
| + private: |
| + friend BluetoothLowEnergyDeviceMac; |
| + friend BluetoothTestMac; |
| + |
| + // Returns CBService. |
| + CBService* GetService() const; |
| + |
| + // bluetooth_device_mac_ is the own of instances of this class. |
|
ortuno
2016/05/09 19:54:01
s/is the own of/owns
jlebel
2016/05/09 23:05:59
Done.
|
| + BluetoothLowEnergyDeviceMac* bluetooth_device_mac_; |
| + // This instance manages services_ (service from CoreBluetooth). |
|
ortuno
2016/05/09 19:54:01
I think this would be better: A service from CBPer
jlebel
2016/05/09 23:05:59
Done.
|
| + base::scoped_nsobject<CBService> service_; |
| + bool is_primary_; |
| + // Service identifier. |
| + std::string identifier_; |
| + // Service UUID. |
| + BluetoothUUID uuid_; |
| + |
| + DISALLOW_COPY_AND_ASSIGN(BluetoothRemoteGattServiceMac); |
| +}; |
| + |
| +} // namespace device |
| + |
| +#endif // DEVICE_BLUETOOTH_BLUETOOTH_REMOTE_GATT_SERVICE_MAC_H_ |