Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
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/. */
7 #ifndef mozilla_dom_bluetooth_bluetoothutils_h__
8 #define mozilla_dom_bluetooth_bluetoothutils_h__
10 #include <hardware/bluetooth.h>
12 #include "BluetoothCommon.h"
13 #include "js/TypeDecls.h"
15 BEGIN_BLUETOOTH_NAMESPACE
17 class BluetoothNamedValue;
18 class BluetoothValue;
19 class BluetoothReplyRunnable;
21 const bt_interface_t*
22 GetBluetoothInterface();
24 void
25 StringToBdAddressType(const nsAString& aBdAddress,
26 bt_bdaddr_t *aRetBdAddressType);
28 void
29 BdAddressTypeToString(bt_bdaddr_t* aBdAddressType,
30 nsAString& aRetBdAddress);
32 bool
33 SetJsObject(JSContext* aContext,
34 const BluetoothValue& aValue,
35 JS::Handle<JSObject*> aObj);
37 bool
38 BroadcastSystemMessage(const nsAString& aType,
39 const BluetoothValue& aData);
41 void
42 DispatchBluetoothReply(BluetoothReplyRunnable* aRunnable,
43 const BluetoothValue& aValue,
44 const nsAString& aErrorStr);
46 void
47 DispatchStatusChangedEvent(const nsAString& aType,
48 const nsAString& aDeviceAddress,
49 bool aStatus);
51 END_BLUETOOTH_NAMESPACE
53 #endif