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 BluetoothRemoteGATTService_h | 5 #ifndef BluetoothRemoteGATTService_h |
6 #define BluetoothRemoteGATTService_h | 6 #define BluetoothRemoteGATTService_h |
7 | 7 |
8 #include "bindings/core/v8/ScriptWrappable.h" | 8 #include "bindings/core/v8/ScriptWrappable.h" |
9 #include "bindings/modules/v8/UnionTypesModules.h" | 9 #include "bindings/modules/v8/UnionTypesModules.h" |
10 #include "platform/heap/Handle.h" | 10 #include "platform/heap/Handle.h" |
11 #include "public/platform/modules/bluetooth/WebBluetoothRemoteGATTService.h" | 11 #include "public/platform/modules/bluetooth/WebBluetoothRemoteGATTService.h" |
| 12 #include "public/platform/modules/bluetooth/web_bluetooth.mojom.h" |
12 #include "wtf/OwnPtr.h" | 13 #include "wtf/OwnPtr.h" |
13 #include "wtf/PassOwnPtr.h" | 14 #include "wtf/PassOwnPtr.h" |
14 #include "wtf/text/WTFString.h" | 15 #include "wtf/text/WTFString.h" |
15 | 16 |
16 namespace blink { | 17 namespace blink { |
17 | 18 |
18 class ScriptPromise; | 19 class ScriptPromise; |
19 class ScriptPromiseResolver; | 20 class ScriptPromiseResolver; |
20 class ScriptState; | 21 class ScriptState; |
21 | 22 |
(...skipping 16 matching lines...) Expand all Loading... |
38 using WebType = OwnPtr<WebBluetoothRemoteGATTService>; | 39 using WebType = OwnPtr<WebBluetoothRemoteGATTService>; |
39 static BluetoothRemoteGATTService* take(ScriptPromiseResolver*, PassOwnPtr<W
ebBluetoothRemoteGATTService>); | 40 static BluetoothRemoteGATTService* take(ScriptPromiseResolver*, PassOwnPtr<W
ebBluetoothRemoteGATTService>); |
40 | 41 |
41 // Interface required by garbage collection. | 42 // Interface required by garbage collection. |
42 DEFINE_INLINE_TRACE() { } | 43 DEFINE_INLINE_TRACE() { } |
43 | 44 |
44 // IDL exposed interface: | 45 // IDL exposed interface: |
45 String uuid() { return m_webService->uuid; } | 46 String uuid() { return m_webService->uuid; } |
46 bool isPrimary() { return m_webService->isPrimary; } | 47 bool isPrimary() { return m_webService->isPrimary; } |
47 ScriptPromise getCharacteristic(ScriptState*, const StringOrUnsignedLong& ch
aracteristic, ExceptionState&); | 48 ScriptPromise getCharacteristic(ScriptState*, const StringOrUnsignedLong& ch
aracteristic, ExceptionState&); |
| 49 ScriptPromise getCharacteristics(ScriptState*, const StringOrUnsignedLong& c
haracteristic, ExceptionState&); |
48 ScriptPromise getCharacteristics(ScriptState*, ExceptionState&); | 50 ScriptPromise getCharacteristics(ScriptState*, ExceptionState&); |
49 ScriptPromise getCharacteristics(ScriptState*, const StringOrUnsignedLong& c
haracteristic, ExceptionState&); | |
50 | 51 |
51 private: | 52 private: |
52 ScriptPromise getCharacteristicsImpl(ScriptState*, String characteristicUUID
); | 53 ScriptPromise getCharacteristicsImpl(ScriptState*, mojom::WebBluetoothQueryT
ype, String characteristicUUID = String()); |
53 | 54 |
54 OwnPtr<WebBluetoothRemoteGATTService> m_webService; | 55 OwnPtr<WebBluetoothRemoteGATTService> m_webService; |
55 }; | 56 }; |
56 | 57 |
57 } // namespace blink | 58 } // namespace blink |
58 | 59 |
59 #endif // BluetoothRemoteGATTService_h | 60 #endif // BluetoothRemoteGATTService_h |
OLD | NEW |