dom/bluetooth/bluedroid/BluetoothUtils.h

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     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

mercurial