1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef WebBluetoothGATTService_h
6 #define WebBluetoothGATTService_h
8 #include "public/platform/WebString.h"
12 struct WebBluetoothGATTService
{
13 WebBluetoothGATTService(const WebString
& serviceInstanceID
,
14 const WebString
& uuid
,
16 const WebString
& deviceInstanceID
)
17 : serviceInstanceID(serviceInstanceID
)
19 , isPrimary(isPrimary
)
20 , deviceInstanceID(deviceInstanceID
)
24 // Members corresponding to BluetoothGATTService attributes as
25 // specified in the IDL.
26 const WebString serviceInstanceID
;
29 const WebString deviceInstanceID
;
34 #endif // WebBluetoothGATTService_h