2012-07-31 21:53:04 -07:00
|
|
|
/* -*- Mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 40 -*- */
|
2012-08-16 19:53:45 -07:00
|
|
|
/* vim: set ts=2 et sw=2 tw=80: */
|
2012-07-31 21:53:04 -07:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#ifndef mozilla_dom_bluetooth_bluetoothutils_h__
|
|
|
|
#define mozilla_dom_bluetooth_bluetoothutils_h__
|
|
|
|
|
|
|
|
#include "BluetoothCommon.h"
|
|
|
|
|
|
|
|
class JSContext;
|
|
|
|
class JSObject;
|
|
|
|
|
|
|
|
BEGIN_BLUETOOTH_NAMESPACE
|
|
|
|
|
2012-08-16 19:53:45 -07:00
|
|
|
class BluetoothDevice;
|
|
|
|
|
2012-07-31 21:53:04 -07:00
|
|
|
nsresult
|
|
|
|
StringArrayToJSArray(JSContext* aCx, JSObject* aGlobal,
|
|
|
|
const nsTArray<nsString>& aSourceArray,
|
|
|
|
JSObject** aResultArray);
|
|
|
|
|
2012-08-16 19:53:45 -07:00
|
|
|
nsresult
|
|
|
|
BluetoothDeviceArrayToJSArray(JSContext* aCx, JSObject* aGlobal,
|
|
|
|
const nsTArray<nsRefPtr<BluetoothDevice> >& aSourceArray,
|
|
|
|
JSObject** aResultArray);
|
|
|
|
|
2012-07-31 21:53:04 -07:00
|
|
|
END_BLUETOOTH_NAMESPACE
|
|
|
|
|
|
|
|
#endif
|