| 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 #include "config.h" | 5 #include "config.h" |
| 6 #include "modules/bluetooth/BluetoothGATTRemoteServer.h" | 6 #include "modules/bluetooth/BluetoothGATTRemoteServer.h" |
| 7 | 7 |
| 8 #include "public/platform/modules/bluetooth/WebBluetoothGATTRemoteServer.h" | 8 #include "bindings/core/v8/CallbackPromiseAdapter.h" |
| 9 #include "bindings/core/v8/ScriptPromise.h" |
| 10 #include "bindings/core/v8/ScriptPromiseResolver.h" |
| 11 #include "core/dom/DOMException.h" |
| 12 #include "core/dom/ExceptionCode.h" |
| 13 #include "modules/bluetooth/BluetoothError.h" |
| 14 #include "modules/bluetooth/BluetoothGATTService.h" |
| 15 #include "public/platform/Platform.h" |
| 16 #include "public/platform/modules/bluetooth/WebBluetooth.h" |
| 9 #include "wtf/OwnPtr.h" | 17 #include "wtf/OwnPtr.h" |
| 10 | 18 |
| 11 namespace blink { | 19 namespace blink { |
| 12 | 20 |
| 13 BluetoothGATTRemoteServer::BluetoothGATTRemoteServer(const WebBluetoothGATTRemot
eServer& webGATT) | 21 BluetoothGATTRemoteServer::BluetoothGATTRemoteServer(const WebBluetoothGATTRemot
eServer& webGATT) |
| 14 : m_webGATT(webGATT) | 22 : m_webGATT(webGATT) |
| 15 { | 23 { |
| 16 } | 24 } |
| 17 | 25 |
| 18 BluetoothGATTRemoteServer* BluetoothGATTRemoteServer::take(ScriptPromiseResolver
*, WebBluetoothGATTRemoteServer* webGATTRawPointer) | 26 BluetoothGATTRemoteServer* BluetoothGATTRemoteServer::take(ScriptPromiseResolver
*, WebBluetoothGATTRemoteServer* webGATTRawPointer) |
| 19 { | 27 { |
| 20 OwnPtr<WebBluetoothGATTRemoteServer> webGATT = adoptPtr(webGATTRawPointer); | 28 OwnPtr<WebBluetoothGATTRemoteServer> webGATT = adoptPtr(webGATTRawPointer); |
| 21 return new BluetoothGATTRemoteServer(*webGATT); | 29 return new BluetoothGATTRemoteServer(*webGATT); |
| 22 } | 30 } |
| 23 | 31 |
| 24 void BluetoothGATTRemoteServer::dispose(WebBluetoothGATTRemoteServer* webGATTRaw
) | 32 void BluetoothGATTRemoteServer::dispose(WebBluetoothGATTRemoteServer* webGATTRaw
) |
| 25 { | 33 { |
| 26 delete webGATTRaw; | 34 delete webGATTRaw; |
| 27 } | 35 } |
| 28 | 36 |
| 37 ScriptPromise BluetoothGATTRemoteServer::getPrimaryService(ScriptState* scriptSt
ate, String serviceUUID) |
| 38 { |
| 39 // TODO(ortuno): BluetoothUUID.getService(serviceUUID) |
| 40 // https://crbug.com/491441 |
| 41 WebBluetooth* webbluetooth = Platform::current()->bluetooth(); |
| 42 |
| 43 RefPtrWillBeRawPtr<ScriptPromiseResolver> resolver = ScriptPromiseResolver::
create(scriptState); |
| 44 ScriptPromise promise = resolver->promise(); |
| 45 webbluetooth->getPrimaryService(m_webGATT.deviceInstanceID, serviceUUID, new
CallbackPromiseAdapter<BluetoothGATTService, BluetoothError>(resolver)); |
| 46 |
| 47 return promise; |
| 48 } |
| 29 | 49 |
| 30 } // namespace blink | 50 } // namespace blink |
| OLD | NEW |