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

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

Issue 1152393002: bluetooth: Blink side implementation of getPrimaryService (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@bluetooth-get-primary-service-interface
Patch Set: Fixed layout test 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/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,
38 String serviceUUID)
39 {
scheib 2015/05/29 00:17:32 TODO: BluetoothUUID.getService(serviceUUID) crbug.
ortuno 2015/06/01 21:21:34 Done.
40 WebBluetooth* webbluetooth = Platform::current()->bluetooth();
41 if (!webbluetooth)
42 return ScriptPromise::rejectWithDOMException(scriptState, DOMException:: create(NotSupportedError));
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 return promise;
47 }
29 48
30 } // namespace blink 49 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698