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

Unified Diff: public/platform/modules/bluetooth/WebBluetoothGATTService.h

Issue 1161863002: bluetooth: Add serviceInstanceID to WebBluetoothService (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@bluetooth-get-primary-service-interface
Patch Set: Created 5 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/platform/modules/bluetooth/WebBluetoothGATTService.h
diff --git a/public/platform/modules/bluetooth/WebBluetoothGATTService.h b/public/platform/modules/bluetooth/WebBluetoothGATTService.h
index a9defbe5b65f93bd5cf15d1e2324a0d580b6d25d..6f2ad460abb3933db924e0ad27221392d052c774 100644
--- a/public/platform/modules/bluetooth/WebBluetoothGATTService.h
+++ b/public/platform/modules/bluetooth/WebBluetoothGATTService.h
@@ -10,7 +10,8 @@
namespace blink {
struct WebBluetoothGATTService {
- WebBluetoothGATTService(const WebString& uuid,
+ WebBluetoothGATTService(const WebString& serviceInstanceID,
+ const WebString& uuid,
bool isPrimary,
const WebString& deviceInstanceID)
: uuid(uuid)
@@ -21,6 +22,7 @@ struct WebBluetoothGATTService {
// Members corresponding to BluetoothGATTService attributes as
// specified in the IDL.
+ const WebString serviceInstanceID;
const WebString uuid;
const bool isPrimary;
const WebString deviceInstanceID;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698