| 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;
|
|
|