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

Unified Diff: device/bluetooth/bluetooth_remote_gatt_service_mac.h

Issue 1948763003: Adding support for service scan on OS X (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@cleanup
Patch Set: Fixing comments Created 4 years, 7 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: 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..f5add19df25f1f481358f48c45298dee5513d635
--- /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_ owns instances of this class.
+ BluetoothLowEnergyDeviceMac* bluetooth_device_mac_;
+ // A service from CBPeripheral.services.
+ 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_
« no previous file with comments | « device/bluetooth/bluetooth_low_energy_peripheral_delegate.mm ('k') | device/bluetooth/bluetooth_remote_gatt_service_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698