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

Unified Diff: device/bluetooth/test/test_bluetooth_local_gatt_service_delegate.h

Issue 1919683002: Adapter changes for implementing local GATT attributes and tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@dbus_classes
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/test/test_bluetooth_local_gatt_service_delegate.h
diff --git a/device/bluetooth/test/test_bluetooth_local_gatt_service_delegate.h b/device/bluetooth/test/test_bluetooth_local_gatt_service_delegate.h
new file mode 100644
index 0000000000000000000000000000000000000000..dec6c7a676acb35bbf2da1cea7926d6e03a6e707
--- /dev/null
+++ b/device/bluetooth/test/test_bluetooth_local_gatt_service_delegate.h
@@ -0,0 +1,77 @@
+// 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_TEST_TEST_BLUETOOTH_LOCAL_GATT_SERVICE_DELEGATE_H_
+#define DEVICE_BLUETOOTH_TEST_TEST_BLUETOOTH_LOCAL_GATT_SERVICE_DELEGATE_H_
+
+#include <cstdint>
+#include <vector>
+
+#include "base/callback_forward.h"
+#include "base/macros.h"
+#include "device/bluetooth/bluetooth_local_gatt_characteristic.h"
+#include "device/bluetooth/bluetooth_local_gatt_descriptor.h"
+#include "device/bluetooth/bluetooth_local_gatt_service.h"
+
+namespace device {
+
+class TestBluetoothLocalGattServiceDelegate
+ : public BluetoothLocalGattService::Delegate {
+ public:
+ TestBluetoothLocalGattServiceDelegate();
+
+ void OnCharacteristicReadRequest(
+ const BluetoothLocalGattService* service,
+ const BluetoothLocalGattCharacteristic* characteristic,
+ int offset,
+ const ValueCallback& callback,
+ const ErrorCallback& error_callback) override;
+ void OnCharacteristicWriteRequest(
+ const BluetoothLocalGattService* service,
+ const BluetoothLocalGattCharacteristic* characteristic,
+ const std::vector<uint8_t>& value,
+ int offset,
+ const base::Closure& callback,
+ const ErrorCallback& error_callback) override;
+ void OnDescriptorReadRequest(const BluetoothLocalGattService* service,
+ const BluetoothLocalGattDescriptor* descriptor,
+ int offset,
+ const ValueCallback& callback,
+ const ErrorCallback& error_callback) override;
+
+ void OnDescriptorWriteRequest(const BluetoothLocalGattService* service,
+ const BluetoothLocalGattDescriptor* descriptor,
+ const std::vector<uint8_t>& value,
+ int offset,
+ const base::Closure& callback,
+ const ErrorCallback& error_callback) override;
+
+ void set_expected_service(BluetoothLocalGattService* service) {
+ expected_service_ = service;
+ }
+
+ void set_expected_characteristic(
+ BluetoothLocalGattCharacteristic* characteristic) {
+ expected_characteristic_ = characteristic;
+ }
+
+ void set_expected_descriptor(BluetoothLocalGattDescriptor* descriptor) {
+ expected_descriptor_ = descriptor;
+ }
+
+ bool should_fail_;
+ uint64_t last_written_value_;
+ uint64_t value_to_write_;
+
+ private:
+ BluetoothLocalGattService* expected_service_;
+ BluetoothLocalGattCharacteristic* expected_characteristic_;
+ BluetoothLocalGattDescriptor* expected_descriptor_;
+
+ DISALLOW_COPY_AND_ASSIGN(TestBluetoothLocalGattServiceDelegate);
+};
+
+} // namespace device
+
+#endif // DEVICE_BLUETOOTH_TEST_TEST_BLUETOOTH_LOCAL_GATT_SERVICE_DELEGATE_H_
« no previous file with comments | « device/bluetooth/test/bluetooth_test_bluez.cc ('k') | device/bluetooth/test/test_bluetooth_local_gatt_service_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698