Jose Cortes
|
1810d47a66
|
Bug 842186 - Replace use of jsval with JS::Value in h and cpp files in the dom/telephony dom/bluetooth directories. r=jwalden
--HG--
extra : rebase_source : c1560ea8c79fbb398d3e8f132e561e7eba81520a
|
2013-04-02 16:06:14 -07:00 |
Eric Chou
|
ddbd22766e
|
Bug 842214 - Replace JS_NewStringCopyN with JS_NewUCStringCopyN, or non-ascii chars would be shown incorrectly, r=gyeh
|
2013-02-18 16:02:23 +08:00 |
Gina Yeh
|
7102c59330
|
Bug 838499 - Assertion failed in function SetJsObject(), r=echou
|
2013-02-06 20:07:27 +08:00 |
Gina Yeh
|
4fdf1c57b2
|
Bug 835740 - Modified BRSF value in hands-free profile, r=echou
|
2013-01-30 12:33:23 +08:00 |
Gina Yeh
|
d90d5f9e61
|
Bug 811569 - Patch 2: Support array of nsString in SetJsObject, r=echou
|
2013-01-29 14:52:39 +08:00 |
Eric Chou
|
d4dad722e2
|
Bug 820216 - should use JS_NewUCStringCopyN to copy a Unicode string, r=gyeh
|
2012-12-27 10:20:17 +08:00 |
Eric Chou
|
093aeb72ad
|
Bug 820143 - implemented Calling Line Identification (CLI), r=gyeh
|
2012-12-17 23:24:35 +08:00 |
Gina Yeh
|
878b80c7c2
|
Bug 812391 - Patch 1: Support audio stream of bt_sco, r=echou
|
2012-11-19 15:10:38 +08:00 |
Gabriele Svelto
|
44557fe8f0
|
Bug 798123 - Replace the array conversion functions in BluetoothUtils.cpp with those in nsTArrayHelpers.h. r=mrbkap
|
2012-10-18 15:20:54 +02:00 |
Ehsan Akhgari
|
76628055e6
|
Bug 779473 - Fix some nsresult abuses in the Bluetooth implementation
|
2012-10-13 10:45:45 -04:00 |
Eric Chou
|
bc8f89cb70
|
Bug 797345 - send a system message to notify that 'file transfer completed', r=qdot
|
2012-10-03 17:06:40 +08:00 |
Gina Yeh
|
4649363c2e
|
Bug 795249 - Final version: Broadcast hfp connection status with system message, r=qdot
|
2012-10-01 15:44:48 +08:00 |
Luke Wagner
|
ad90af9ca5
|
Bug 625199 - s/JSAutoEnterCompartment/JSAutoCompartment/ and make it infallible (r=bholley)
--HG--
extra : rebase_source : 12acf2288285f5caefd7fecea8207de3a47eab5b
|
2012-08-21 18:42:53 -07:00 |
Ehsan Akhgari
|
e368dc9c85
|
Bug 579517 - Part 1: Automated conversion of NSPR numeric types to stdint types in Gecko; r=bsmedberg
This patch was generated by a script. Here's the source of the script for
future reference:
function convert() {
echo "Converting $1 to $2..."
find . ! -wholename "*nsprpub*" \
! -wholename "*security/nss*" \
! -wholename "*/.hg*" \
! -wholename "obj-ff-dbg*" \
! -name nsXPCOMCID.h \
! -name prtypes.h \
-type f \
\( -iname "*.cpp" \
-o -iname "*.h" \
-o -iname "*.c" \
-o -iname "*.cc" \
-o -iname "*.idl" \
-o -iname "*.ipdl" \
-o -iname "*.ipdlh" \
-o -iname "*.mm" \) | \
xargs -n 1 sed -i -e "s/\b$1\b/$2/g"
}
convert PRInt8 int8_t
convert PRUint8 uint8_t
convert PRInt16 int16_t
convert PRUint16 uint16_t
convert PRInt32 int32_t
convert PRUint32 uint32_t
convert PRInt64 int64_t
convert PRUint64 uint64_t
convert PRIntn int
convert PRUintn unsigned
convert PRSize size_t
convert PROffset32 int32_t
convert PROffset64 int64_t
convert PRPtrdiff ptrdiff_t
convert PRFloat64 double
|
2012-08-22 11:56:38 -04:00 |
Kyle Machulis
|
085993a2c6
|
Bug 783431 - Fix js array initialization for bluetooth and telephony; r=mrbkap
|
2012-08-20 18:26:44 -07:00 |
Gina Yeh
|
141b9509a5
|
Bug 777671 - Final version: add function getPairedDevices() in nsIDOMBluetoothAdapter, r=qdot, sr=mrbkap
---
dom/bluetooth/BluetoothAdapter.cpp | 97 +++++++++++++++++++++++++-
dom/bluetooth/BluetoothAdapter.h | 2 +-
dom/bluetooth/BluetoothPropertyContainer.cpp | 32 +--------
dom/bluetooth/BluetoothPropertyContainer.h | 26 +------
dom/bluetooth/BluetoothService.h | 11 ++-
dom/bluetooth/BluetoothUtils.cpp | 48 ++++++++++++-
dom/bluetooth/BluetoothUtils.h | 9 ++-
dom/bluetooth/linux/BluetoothDBusService.cpp | 93 +++++++++++++++++++++++-
dom/bluetooth/linux/BluetoothDBusService.h | 4 +-
dom/bluetooth/nsIDOMBluetoothAdapter.idl | 3 +-
10 files changed, 261 insertions(+), 64 deletions(-)
|
2012-08-17 10:53:45 +08:00 |
Kyle Machulis
|
999cc34e55
|
Bug 761511: Patch 3 - Update Manager/Adapter/Device objects to be BluetoothPropertyObjects, and add class specific setters; r=mrbkap
|
2012-07-31 21:53:04 -07:00 |