| Index: Source/modules/bluetooth/BluetoothGATTCharacteristic.h
|
| diff --git a/Source/modules/bluetooth/BluetoothGATTCharacteristic.h b/Source/modules/bluetooth/BluetoothGATTCharacteristic.h
|
| index b21ffbf565b586fda7209b3473649024bfd318e3..4c61369e551401ca590abaab24624aeaf9592800 100644
|
| --- a/Source/modules/bluetooth/BluetoothGATTCharacteristic.h
|
| +++ b/Source/modules/bluetooth/BluetoothGATTCharacteristic.h
|
| @@ -12,7 +12,9 @@
|
|
|
| namespace blink {
|
|
|
| +class ScriptPromise;
|
| class ScriptPromiseResolver;
|
| +class ScriptState;
|
|
|
| // BluetoothGATTCharacteristic represents a GATT Characteristic, which is a
|
| // basic data element that provides further information about a peripheral's
|
| @@ -39,6 +41,7 @@ public:
|
|
|
| // IDL exposed interface:
|
| String uuid() { return m_webCharacteristic->uuid; }
|
| + ScriptPromise readValue(ScriptState*);
|
|
|
| private:
|
| OwnPtr<WebBluetoothGATTCharacteristic> m_webCharacteristic;
|
|
|