| Index: third_party/WebKit/Source/modules/bluetooth/BluetoothGATTCharacteristic.h
|
| diff --git a/third_party/WebKit/Source/modules/bluetooth/BluetoothGATTCharacteristic.h b/third_party/WebKit/Source/modules/bluetooth/BluetoothGATTCharacteristic.h
|
| index 44c3d3a1b805ac878d48fc7ab7e528e3fa69e432..9a5a883d0767be466bd282fa12820d321325883f 100644
|
| --- a/third_party/WebKit/Source/modules/bluetooth/BluetoothGATTCharacteristic.h
|
| +++ b/third_party/WebKit/Source/modules/bluetooth/BluetoothGATTCharacteristic.h
|
| @@ -18,6 +18,7 @@
|
|
|
| namespace blink {
|
|
|
| +class BluetoothCharacteristicProperties;
|
| class ExecutionContext;
|
| class ScriptPromise;
|
| class ScriptPromiseResolver;
|
| @@ -70,6 +71,8 @@ public:
|
|
|
| // IDL exposed interface:
|
| String uuid() { return m_webCharacteristic->uuid; }
|
| +
|
| + BluetoothCharacteristicProperties* properties() { return m_properties; }
|
| PassRefPtr<DOMArrayBuffer> value() const { return m_value; }
|
| ScriptPromise readValue(ScriptState*);
|
| ScriptPromise writeValue(ScriptState*, const DOMArrayPiece&);
|
| @@ -81,6 +84,7 @@ public:
|
| private:
|
| OwnPtr<WebBluetoothGATTCharacteristicInit> m_webCharacteristic;
|
| bool m_stopped;
|
| + Member<BluetoothCharacteristicProperties> m_properties;
|
| RefPtr<DOMArrayBuffer> m_value;
|
| };
|
|
|
|
|