| Index: Source/modules/bluetooth/BluetoothGATTRemoteServer.h
|
| diff --git a/Source/modules/bluetooth/BluetoothGATTRemoteServer.h b/Source/modules/bluetooth/BluetoothGATTRemoteServer.h
|
| index 75e865c6b55e779b82d20d167ad7ea653d9ae554..7519b87a8092ba68e09f8b82a8ff20c9340030f6 100644
|
| --- a/Source/modules/bluetooth/BluetoothGATTRemoteServer.h
|
| +++ b/Source/modules/bluetooth/BluetoothGATTRemoteServer.h
|
| @@ -8,10 +8,13 @@
|
| #include "bindings/core/v8/ScriptWrappable.h"
|
| #include "platform/heap/Heap.h"
|
| #include "public/platform/modules/bluetooth/WebBluetoothGATTRemoteServer.h"
|
| +#include "wtf/text/WTFString.h"
|
|
|
| namespace blink {
|
|
|
| +class ScriptPromise;
|
| class ScriptPromiseResolver;
|
| +class ScriptState;
|
|
|
| // BluetoothGATTRemoteServer provides a way to interact with a connected bluetooth peripheral.
|
| //
|
| @@ -36,6 +39,7 @@ public:
|
|
|
| // IDL exposed interface:
|
| bool connected() { return m_webGATT.connected; }
|
| + ScriptPromise getPrimaryService(ScriptState*, String serviceUUID);
|
|
|
| private:
|
| WebBluetoothGATTRemoteServer m_webGATT;
|
|
|