1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dom/bluetooth/bluedroid/BluetoothUtils.h Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,53 @@ 1.4 +/* -*- Mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 40 -*- */ 1.5 +/* vim: set ts=2 et sw=2 tw=80: */ 1.6 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.7 + * License, v. 2.0. If a copy of the MPL was not distributed with this file, 1.8 + * You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.9 + 1.10 +#ifndef mozilla_dom_bluetooth_bluetoothutils_h__ 1.11 +#define mozilla_dom_bluetooth_bluetoothutils_h__ 1.12 + 1.13 +#include <hardware/bluetooth.h> 1.14 + 1.15 +#include "BluetoothCommon.h" 1.16 +#include "js/TypeDecls.h" 1.17 + 1.18 +BEGIN_BLUETOOTH_NAMESPACE 1.19 + 1.20 +class BluetoothNamedValue; 1.21 +class BluetoothValue; 1.22 +class BluetoothReplyRunnable; 1.23 + 1.24 +const bt_interface_t* 1.25 +GetBluetoothInterface(); 1.26 + 1.27 +void 1.28 +StringToBdAddressType(const nsAString& aBdAddress, 1.29 + bt_bdaddr_t *aRetBdAddressType); 1.30 + 1.31 +void 1.32 +BdAddressTypeToString(bt_bdaddr_t* aBdAddressType, 1.33 + nsAString& aRetBdAddress); 1.34 + 1.35 +bool 1.36 +SetJsObject(JSContext* aContext, 1.37 + const BluetoothValue& aValue, 1.38 + JS::Handle<JSObject*> aObj); 1.39 + 1.40 +bool 1.41 +BroadcastSystemMessage(const nsAString& aType, 1.42 + const BluetoothValue& aData); 1.43 + 1.44 +void 1.45 +DispatchBluetoothReply(BluetoothReplyRunnable* aRunnable, 1.46 + const BluetoothValue& aValue, 1.47 + const nsAString& aErrorStr); 1.48 + 1.49 +void 1.50 +DispatchStatusChangedEvent(const nsAString& aType, 1.51 + const nsAString& aDeviceAddress, 1.52 + bool aStatus); 1.53 + 1.54 +END_BLUETOOTH_NAMESPACE 1.55 + 1.56 +#endif