| 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 BluetoothRemoteGATTServer_h | 5 #ifndef BluetoothRemoteGATTServer_h |
| 6 #define BluetoothRemoteGATTServer_h | 6 #define BluetoothRemoteGATTServer_h |
| 7 | 7 |
| 8 #include "bindings/core/v8/ScriptWrappable.h" | 8 #include "bindings/core/v8/ScriptWrappable.h" |
| 9 #include "bindings/modules/v8/StringOrUnsignedLong.h" | 9 #include "bindings/modules/v8/StringOrUnsignedLong.h" |
| 10 #include "modules/bluetooth/BluetoothDevice.h" | 10 #include "modules/bluetooth/BluetoothDevice.h" |
| 11 #include "platform/heap/Heap.h" | 11 #include "platform/heap/Heap.h" |
| 12 #include "public/platform/modules/bluetooth/WebBluetoothError.h" | 12 #include "third_party/WebKit/public/platform/modules/bluetooth/web_bluetooth.moj
om-blink.h" |
| 13 #include "wtf/text/WTFString.h" | 13 #include "wtf/text/WTFString.h" |
| 14 | 14 |
| 15 namespace blink { | 15 namespace blink { |
| 16 | 16 |
| 17 class BluetoothDevice; | 17 class BluetoothDevice; |
| 18 class ScriptPromise; | 18 class ScriptPromise; |
| 19 class ScriptPromiseResolver; | 19 class ScriptPromiseResolver; |
| 20 class ScriptState; | 20 class ScriptState; |
| 21 | 21 |
| 22 // BluetoothRemoteGATTServer provides a way to interact with a connected bluetoo
th peripheral. | 22 // BluetoothRemoteGATTServer provides a way to interact with a connected bluetoo
th peripheral. |
| (...skipping 14 matching lines...) Expand all Loading... |
| 37 // IDL exposed interface: | 37 // IDL exposed interface: |
| 38 BluetoothDevice* device() { return m_device; } | 38 BluetoothDevice* device() { return m_device; } |
| 39 bool connected() { return m_connected; } | 39 bool connected() { return m_connected; } |
| 40 ScriptPromise connect(ScriptState*); | 40 ScriptPromise connect(ScriptState*); |
| 41 void disconnect(ScriptState*); | 41 void disconnect(ScriptState*); |
| 42 ScriptPromise getPrimaryService(ScriptState*, const StringOrUnsignedLong& se
rvice, ExceptionState&); | 42 ScriptPromise getPrimaryService(ScriptState*, const StringOrUnsignedLong& se
rvice, ExceptionState&); |
| 43 ScriptPromise getPrimaryServices(ScriptState*, const StringOrUnsignedLong& s
ervice, ExceptionState&); | 43 ScriptPromise getPrimaryServices(ScriptState*, const StringOrUnsignedLong& s
ervice, ExceptionState&); |
| 44 ScriptPromise getPrimaryServices(ScriptState*, ExceptionState&); | 44 ScriptPromise getPrimaryServices(ScriptState*, ExceptionState&); |
| 45 | 45 |
| 46 private: | 46 private: |
| 47 ScriptPromise getPrimaryServicesImpl(ScriptState*, mojom::WebBluetoothGATTQu
eryQuantity, String serviceUUID = String()); | 47 ScriptPromise getPrimaryServicesImpl(ScriptState*, mojom::blink::WebBluetoot
hGATTQueryQuantity, String serviceUUID = String()); |
| 48 | 48 |
| 49 Member<BluetoothDevice> m_device; | 49 Member<BluetoothDevice> m_device; |
| 50 bool m_connected; | 50 bool m_connected; |
| 51 }; | 51 }; |
| 52 | 52 |
| 53 } // namespace blink | 53 } // namespace blink |
| 54 | 54 |
| 55 #endif // BluetoothDevice_h | 55 #endif // BluetoothDevice_h |
| OLD | NEW |