Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(196)

Side by Side Diff: Source/modules/bluetooth/BluetoothGATTService.cpp

Issue 1146163005: bluetooth: Blink-side implementation of getCharacteristic. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@bluetooth-characteristic-interface
Patch Set: getCharacteristic Blink-Side Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/BluetoothGATTService.h" 6 #include "modules/bluetooth/BluetoothGATTService.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/BluetoothGATTCharacteristic.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 BluetoothGATTService::BluetoothGATTService(const WebBluetoothGATTService& webSer vice) 21 BluetoothGATTService::BluetoothGATTService(const WebBluetoothGATTService& webSer vice)
14 : m_webService(webService) 22 : m_webService(webService)
15 { 23 {
16 } 24 }
17 25
18 BluetoothGATTService* BluetoothGATTService::take(ScriptPromiseResolver*, WebBlue toothGATTService* webServiceRawPointer) 26 BluetoothGATTService* BluetoothGATTService::take(ScriptPromiseResolver*, WebBlue toothGATTService* webServiceRawPointer)
19 { 27 {
20 if (!webServiceRawPointer) { 28 if (!webServiceRawPointer) {
21 return nullptr; 29 return nullptr;
22 } 30 }
23 OwnPtr<WebBluetoothGATTService> webService = adoptPtr(webServiceRawPointer); 31 OwnPtr<WebBluetoothGATTService> webService = adoptPtr(webServiceRawPointer);
24 return new BluetoothGATTService(*webService); 32 return new BluetoothGATTService(*webService);
25 } 33 }
26 34
27 void BluetoothGATTService::dispose(WebBluetoothGATTService* webService) 35 void BluetoothGATTService::dispose(WebBluetoothGATTService* webService)
28 { 36 {
29 delete webService; 37 delete webService;
30 } 38 }
31 39
40 ScriptPromise BluetoothGATTService::getCharacteristic(ScriptState* scriptState,
41 String characteristicUUID)
42 {
43 WebBluetooth* webbluetooth = Platform::current()->bluetooth();
44 if (!webbluetooth)
45 return ScriptPromise::rejectWithDOMException(scriptState, DOMException:: create(NotSupportedError));
46 RefPtrWillBeRawPtr<ScriptPromiseResolver> resolver = ScriptPromiseResolver:: create(scriptState);
47 ScriptPromise promise = resolver->promise();
48 webbluetooth->getCharacteristic(m_webService.serviceInstanceID, characterist icUUID, new CallbackPromiseAdapter<BluetoothGATTCharacteristic, BluetoothError>( resolver));
49 return promise;
50 }
51
32 } // namespace blink 52 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698