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

Unified Diff: components/arc/common/bluetooth.mojom

Issue 2085083002: arc: bluetooth: Implement Gatt notify (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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: components/arc/common/bluetooth.mojom
diff --git a/components/arc/common/bluetooth.mojom b/components/arc/common/bluetooth.mojom
index 2017ee0434af0761cad5f0d4ec90d34b68c8a2db..67bc7ff87234b306809d13909d18f71f7916b729 100644
--- a/components/arc/common/bluetooth.mojom
+++ b/components/arc/common/bluetooth.mojom
@@ -321,4 +321,9 @@ interface BluetoothInstance {
uint16 end_handle);
[MinVersion=1] OnServicesAdded@12(BluetoothAddress remote_addr,
array<BluetoothGattDBElement> db);
+ [MinVersion=2] OnGattNotify@13(BluetoothAddress remote_addr,
+ BluetoothGattServiceID service_id,
+ BluetoothGattID char_id,
+ bool is_notify,
ortuno 2016/06/21 23:23:06 What purpose does is_notify serve? When is it true
puthik_chromium 2016/06/23 02:53:34 It's map to is_notify in here. It should be true f
ortuno 2016/06/23 14:29:38 I see. Does this have to match the android impleme
puthik_chromium 2016/06/23 18:36:30 I would prefer to match it to android. It will mak
+ array<uint8> value);
};

Powered by Google App Engine
This is Rietveld 408576698