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

Unified Diff: device/bluetooth/bluetooth_remote_gatt_descriptor_win.h

Issue 1898643002: Refactor device::BluetoothGattXXX classes to split into remote/local. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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_descriptor_win.h
diff --git a/device/bluetooth/bluetooth_remote_gatt_descriptor_win.h b/device/bluetooth/bluetooth_remote_gatt_descriptor_win.h
index 29e05ef7c35359ec3686c64b44dd5c5499beb0f3..4964cb4fa1da747ba0390c263e83e8eef8d51fff 100644
--- a/device/bluetooth/bluetooth_remote_gatt_descriptor_win.h
+++ b/device/bluetooth/bluetooth_remote_gatt_descriptor_win.h
@@ -9,8 +9,9 @@
#include "base/files/file_path.h"
#include "base/memory/weak_ptr.h"
-#include "device/bluetooth/bluetooth_gatt_descriptor.h"
#include "device/bluetooth/bluetooth_low_energy_defs_win.h"
+#include "device/bluetooth/bluetooth_remote_gatt_characteristic.h"
+#include "device/bluetooth/bluetooth_remote_gatt_descriptor.h"
namespace device {
@@ -19,7 +20,7 @@ class BluetoothRemoteGattCharacteristicWin;
class BluetoothTaskManagerWin;
class DEVICE_BLUETOOTH_EXPORT BluetoothRemoteGattDescriptorWin
- : public BluetoothGattDescriptor {
+ : public BluetoothRemoteGattDescriptor {
public:
BluetoothRemoteGattDescriptorWin(
BluetoothRemoteGattCharacteristicWin* parent_characteristic,
@@ -27,13 +28,13 @@ class DEVICE_BLUETOOTH_EXPORT BluetoothRemoteGattDescriptorWin
scoped_refptr<base::SequencedTaskRunner>& ui_task_runner);
~BluetoothRemoteGattDescriptorWin() override;
- // Override BluetoothGattDescriptor interfaces.
+ // Override BluetoothRemoteGattDescriptor interfaces.
std::string GetIdentifier() const override;
BluetoothUUID GetUUID() const override;
- bool IsLocal() const override;
std::vector<uint8_t>& GetValue() const override;
- BluetoothGattCharacteristic* GetCharacteristic() const override;
- BluetoothGattCharacteristic::Permissions GetPermissions() const override;
+ BluetoothRemoteGattCharacteristic* GetCharacteristic() const override;
+ BluetoothRemoteGattCharacteristic::Permissions GetPermissions()
+ const override;
void ReadRemoteDescriptor(const ValueCallback& callback,
const ErrorCallback& error_callback) override;
void WriteRemoteDescriptor(const std::vector<uint8_t>& new_value,
@@ -52,7 +53,7 @@ class DEVICE_BLUETOOTH_EXPORT BluetoothRemoteGattDescriptorWin
base::FilePath service_path_;
scoped_refptr<BluetoothTaskManagerWin> task_manager_;
- BluetoothGattCharacteristic::Permissions descriptor_permissions_;
+ BluetoothRemoteGattCharacteristic::Permissions descriptor_permissions_;
BluetoothUUID descriptor_uuid_;
std::string descriptor_identifier_;
std::vector<uint8_t> descriptor_value_;

Powered by Google App Engine
This is Rietveld 408576698