| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef WebBluetoothGATTCharacteristicInit_h | 5 #ifndef WebBluetoothGATTCharacteristicInit_h |
| 6 #define WebBluetoothGATTCharacteristicInit_h | 6 #define WebBluetoothGATTCharacteristicInit_h |
| 7 | 7 |
| 8 #include "public/platform/WebString.h" | 8 #include "public/platform/WebString.h" |
| 9 #include "public/platform/WebVector.h" | 9 #include "public/platform/WebVector.h" |
| 10 | 10 |
| 11 namespace blink { | 11 namespace blink { |
| 12 | 12 |
| 13 // Contains members corresponding to BluetoothGATTCharacteristic attributes as | 13 // Contains members corresponding to BluetoothGATTCharacteristic attributes as |
| 14 // specified in the IDL. | 14 // specified in the IDL. |
| 15 struct WebBluetoothGATTCharacteristicInit { | 15 struct WebBluetoothGATTCharacteristicInit { |
| 16 WebBluetoothGATTCharacteristicInit(const WebString& characteristicInstanceID
, | 16 WebBluetoothGATTCharacteristicInit(const WebString& characteristicInstanceID
, |
| 17 const WebString& serviceInstanceID, | 17 const WebString& serviceInstanceID, |
| 18 const WebString& uuid) | 18 const WebString& uuid, |
| 19 uint32_t characteristicProperties) |
| 19 : characteristicInstanceID(characteristicInstanceID) | 20 : characteristicInstanceID(characteristicInstanceID) |
| 20 , serviceInstanceID(serviceInstanceID) | 21 , serviceInstanceID(serviceInstanceID) |
| 21 , uuid(uuid) | 22 , uuid(uuid) |
| 23 , characteristicProperties(characteristicProperties) |
| 22 { | 24 { |
| 23 } | 25 } |
| 24 | 26 |
| 25 const WebString characteristicInstanceID; | 27 const WebString characteristicInstanceID; |
| 26 const WebString serviceInstanceID; | 28 const WebString serviceInstanceID; |
| 27 const WebString uuid; | 29 const WebString uuid; |
| 28 // TODO(ortuno): Add 'properties' once CharacteristicProperties is implement
ed. | 30 const uint32_t characteristicProperties; |
| 29 // https://crbug.com/483345 | |
| 30 // const WebCharacteristicProperties properties; | |
| 31 const WebVector<uint8_t> value; | 31 const WebVector<uint8_t> value; |
| 32 }; | 32 }; |
| 33 | 33 |
| 34 } // namespace blink | 34 } // namespace blink |
| 35 | 35 |
| 36 #endif // WebBluetoothGATTCharacteristicInit_h | 36 #endif // WebBluetoothGATTCharacteristicInit_h |
| OLD | NEW |