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 "public/platform/modules/bluetooth/WebBluetoothError.h" |
| 13 #include "wtf/OwnPtr.h" |
| 14 #include "wtf/PassOwnPtr.h" |
13 #include "wtf/text/WTFString.h" | 15 #include "wtf/text/WTFString.h" |
14 | 16 |
15 namespace blink { | 17 namespace blink { |
16 | 18 |
17 class BluetoothDevice; | 19 class BluetoothDevice; |
18 class ScriptPromise; | 20 class ScriptPromise; |
19 class ScriptPromiseResolver; | 21 class ScriptPromiseResolver; |
20 class ScriptState; | 22 class ScriptState; |
21 | 23 |
22 // BluetoothRemoteGATTServer provides a way to interact with a connected bluetoo
th peripheral. | 24 // BluetoothRemoteGATTServer provides a way to interact with a connected bluetoo
th peripheral. |
(...skipping 23 matching lines...) Expand all Loading... |
46 private: | 48 private: |
47 ScriptPromise getPrimaryServicesImpl(ScriptState*, mojom::WebBluetoothGATTQu
eryQuantity, String serviceUUID = String()); | 49 ScriptPromise getPrimaryServicesImpl(ScriptState*, mojom::WebBluetoothGATTQu
eryQuantity, String serviceUUID = String()); |
48 | 50 |
49 Member<BluetoothDevice> m_device; | 51 Member<BluetoothDevice> m_device; |
50 bool m_connected; | 52 bool m_connected; |
51 }; | 53 }; |
52 | 54 |
53 } // namespace blink | 55 } // namespace blink |
54 | 56 |
55 #endif // BluetoothDevice_h | 57 #endif // BluetoothDevice_h |
OLD | NEW |