|
1 /* -*- Mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 40 -*- */ |
|
2 /* vim: set ts=2 et sw=2 tw=80: */ |
|
3 /* This Source Code Form is subject to the terms of the Mozilla Public |
|
4 * License, v. 2.0. If a copy of the MPL was not distributed with this file, |
|
5 * You can obtain one at http://mozilla.org/MPL/2.0/. */ |
|
6 |
|
7 #ifndef mozilla_dom_bluetooth_bluetoothutils_h__ |
|
8 #define mozilla_dom_bluetooth_bluetoothutils_h__ |
|
9 |
|
10 #include <hardware/bluetooth.h> |
|
11 |
|
12 #include "BluetoothCommon.h" |
|
13 #include "js/TypeDecls.h" |
|
14 |
|
15 BEGIN_BLUETOOTH_NAMESPACE |
|
16 |
|
17 class BluetoothNamedValue; |
|
18 class BluetoothValue; |
|
19 class BluetoothReplyRunnable; |
|
20 |
|
21 const bt_interface_t* |
|
22 GetBluetoothInterface(); |
|
23 |
|
24 void |
|
25 StringToBdAddressType(const nsAString& aBdAddress, |
|
26 bt_bdaddr_t *aRetBdAddressType); |
|
27 |
|
28 void |
|
29 BdAddressTypeToString(bt_bdaddr_t* aBdAddressType, |
|
30 nsAString& aRetBdAddress); |
|
31 |
|
32 bool |
|
33 SetJsObject(JSContext* aContext, |
|
34 const BluetoothValue& aValue, |
|
35 JS::Handle<JSObject*> aObj); |
|
36 |
|
37 bool |
|
38 BroadcastSystemMessage(const nsAString& aType, |
|
39 const BluetoothValue& aData); |
|
40 |
|
41 void |
|
42 DispatchBluetoothReply(BluetoothReplyRunnable* aRunnable, |
|
43 const BluetoothValue& aValue, |
|
44 const nsAString& aErrorStr); |
|
45 |
|
46 void |
|
47 DispatchStatusChangedEvent(const nsAString& aType, |
|
48 const nsAString& aDeviceAddress, |
|
49 bool aStatus); |
|
50 |
|
51 END_BLUETOOTH_NAMESPACE |
|
52 |
|
53 #endif |