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

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: Removed new line 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(PassOwnPtr<WebBluetoothGATTService> w ebService) 21 BluetoothGATTService::BluetoothGATTService(PassOwnPtr<WebBluetoothGATTService> w ebService)
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 return new BluetoothGATTService(adoptPtr(webServiceRawPointer)); 31 return new BluetoothGATTService(adoptPtr(webServiceRawPointer));
24 } 32 }
25 33
26 void BluetoothGATTService::dispose(WebBluetoothGATTService* webService) 34 void BluetoothGATTService::dispose(WebBluetoothGATTService* webService)
27 { 35 {
28 delete webService; 36 delete webService;
29 } 37 }
30 38
39 ScriptPromise BluetoothGATTService::getCharacteristic(ScriptState* scriptState,
40 String characteristicUUID)
41 {
42 WebBluetooth* webbluetooth = Platform::current()->bluetooth();
43
44 RefPtrWillBeRawPtr<ScriptPromiseResolver> resolver = ScriptPromiseResolver:: create(scriptState);
45 ScriptPromise promise = resolver->promise();
46 webbluetooth->getCharacteristic(m_webService->serviceInstanceID, characteris ticUUID, new CallbackPromiseAdapter<BluetoothGATTCharacteristic, BluetoothError> (resolver));
47
48 return promise;
49 }
50
31 } // namespace blink 51 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698