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

Unified Diff: device/bluetooth/device.h

Issue 2640073004: bluetooth: Add descriptor list to DeviceDetailsPage on internals page. (Closed)
Patch Set: Fix merge issue of bluetooth_internals.css Created 3 years, 11 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
« no previous file with comments | « chrome/browser/ui/webui/bluetooth_internals/bluetooth_internals_ui.cc ('k') | device/bluetooth/device.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/bluetooth/device.h
diff --git a/device/bluetooth/device.h b/device/bluetooth/device.h
index 6a72f8caf7a5abda39b1d842fc5bc548aec52d01..24bb6fd267752d49238889e60fe1116b11ae6113 100644
--- a/device/bluetooth/device.h
+++ b/device/bluetooth/device.h
@@ -15,6 +15,7 @@
#include "device/bluetooth/bluetooth_device.h"
#include "device/bluetooth/bluetooth_gatt_connection.h"
#include "device/bluetooth/bluetooth_remote_gatt_characteristic.h"
+#include "device/bluetooth/bluetooth_remote_gatt_descriptor.h"
#include "device/bluetooth/bluetooth_remote_gatt_service.h"
#include "device/bluetooth/public/interfaces/device.mojom.h"
#include "mojo/public/cpp/bindings/strong_binding.h"
@@ -53,6 +54,9 @@ class Device : public mojom::Device, public device::BluetoothAdapter::Observer {
void GetServices(const GetServicesCallback& callback) override;
void GetCharacteristics(const std::string& service_id,
const GetCharacteristicsCallback& callback) override;
+ void GetDescriptors(const std::string& service_id,
+ const std::string& characteristic_id,
+ const GetDescriptorsCallback& callback) override;
private:
Device(scoped_refptr<device::BluetoothAdapter> adapter,
« no previous file with comments | « chrome/browser/ui/webui/bluetooth_internals/bluetooth_internals_ui.cc ('k') | device/bluetooth/device.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698