Kyle Machulis
|
1444f8afaf
|
Bug 791147: Patch 1 - Make bluetooth pairing replies use DOMRequests; r=bent
|
2012-09-19 16:37:42 -07:00 |
|
Gina Yeh
|
8179cb7ca5
|
Bug 791945 - Final version: Assertion failed when checking type of propertychanged message, r=echou
|
2012-09-19 11:19:45 +08:00 |
|
Gina Yeh
|
1e0365d9fa
|
Bug 790133 - Final version: Fire devicecreated event with a BluetoothDevice, r=qdot, sr=mrbkap
|
2012-09-17 14:39:47 +08:00 |
|
Eric Chou
|
0926fd916a
|
Backout 5796eacef43c (bug 790133) for B2G compilation failures again
|
2012-09-17 14:15:12 +08:00 |
|
Gina Yeh
|
b08d9d2496
|
Bug 791182 - Final version: Send system message when pairing process is finished, r=qdot
|
2012-09-17 13:56:29 +08:00 |
|
Gina Yeh
|
a0d6e4e4ec
|
Bug 790133 - Final version: Fire devicecreated event with a BluetoothDevice, r=qdot, sr=mrbkap
|
2012-09-17 13:50:40 +08:00 |
|
Ed Morley
|
213df01f52
|
Backout 35c8685ee065 (bug 790133) for B2G compilation failures
|
2012-09-14 10:13:15 +01:00 |
|
Gina Yeh
|
c7c62d7a8a
|
Bug 790133 - Final version: Fire devicecreated event with a BluetoothDevice, r=qdot, sr=mrbkap
|
2012-09-14 16:54:25 +08:00 |
|
Ben Turner
|
0d2700c567
|
Bug 755943 - 'Electrolysize b2g-bluetooth'. r=qDot+cjones.
|
2012-09-13 09:37:14 -07:00 |
|
Gina Yeh
|
1cca3ee12d
|
Bug 789014 - Final version: Broadcast bonding-related events via system message, r=qdot, r=mrbkap
|
2012-09-12 22:03:42 +08:00 |
|
Kyle Machulis
|
cc79f8ed20
|
Bug 756299: Patch 2 - IPC Socket Creation Functions and Type Additions; r=mrbkap
|
2012-09-05 20:06:20 -07:00 |
|
Kyle Huey
|
c25f8e64ef
|
Bug 687332: Part 2 - Move event handlers off of DOM objects and keep track of them solely in the event listener manager. r=smaug,bz
|
2012-08-30 20:45:16 -07:00 |
|
Ehsan Akhgari
|
57ac5ddc72
|
Merge the landing of bug 579517 to mozilla-inbound
|
2012-08-22 12:12:15 -04:00 |
|
Eric Chou
|
d86c1206ca
|
Bug 783520 - [b2g-bluetooth] follow-up to bug 730992, r=qdot
|
2012-08-22 18:37:08 +08:00 |
|
Gina Yeh
|
b9012edcf5
|
Bug 783454 - v1: Create devicefound event with event generator, r=qdot
|
2012-08-21 10:54:28 +08:00 |
|
Ehsan Akhgari
|
0fd9123eac
|
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 |
|
Gina Yeh
|
392f4dff11
|
Bug 778640 - Final version: Firing devicedisappeared event, r=qdot, r=smaug
---
dom/bluetooth/BluetoothAdapter.cpp | 16 ++++++++++++++-
dom/bluetooth/Makefile.in | 1 +
.../nsIDOMBluetoothDeviceAddressEvent.idl | 21 ++++++++++++++++++++
js/xpconnect/src/event_impl_gen.conf.in | 3 +++
4 files changed, 40 insertions(+), 1 deletion(-)
create mode 100644 dom/bluetooth/nsIDOMBluetoothDeviceAddressEvent.idl
|
2012-08-20 12:23:32 +08:00 |
|
Eric Chou
|
823bcc084b
|
Bug 730992 - Patch 3: Hooking things up to BluetoothAdapter, r=qdot, sr=mrbkap
---
dom/bluetooth/BluetoothAdapter.cpp | 204 +++++++++++++++++++++++++++++-
dom/bluetooth/BluetoothAdapter.h | 8 ++
dom/bluetooth/nsIDOMBluetoothAdapter.idl | 16 +++-
3 files changed, 224 insertions(+), 4 deletions(-)
|
2012-08-17 18:35:59 +08:00 |
|
Chris Pearce
|
0b56ddc818
|
Bug 778640 - Backout due to burning. r=bustage
|
2012-08-17 16:22:25 +12:00 |
|
Gina Yeh
|
e1defc266b
|
Bug 778640 - Final version: Firing devicedisappeared event, create nsIDOMBluetoothDeviceAddressEvent by event generator, r=qdot, r=smaug
---
dom/bluetooth/BluetoothAdapter.cpp | 17 +++++++++++++++-
dom/bluetooth/Makefile.in | 1 +
.../nsIDOMBluetoothDeviceAddressEvent.idl | 21 ++++++++++++++++++++
js/xpconnect/src/event_impl_gen.conf.in | 3 ++-
4 files changed, 40 insertions(+), 2 deletions(-)
create mode 100644 dom/bluetooth/nsIDOMBluetoothDeviceAddressEvent.idl
|
2012-08-17 12:02:52 +08:00 |
|
Gina Yeh
|
8cc43cb957
|
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
|
6f53c1980f
|
Bug 781692: Always fire DOMRequests for Set functions in BluetoothAdapter
|
2012-08-13 17:57:54 -07:00 |
|
Kyle Machulis
|
5d4d64ab32
|
Bug 768306 - Patch 2: Change BluetoothAdapter initialization to get properties via off main thread blocking calls when creating Adapter object; r=mrbkap
|
2012-08-08 10:47:09 -07:00 |
|
Kyle Machulis
|
9541d6b577
|
Bug 779702: Fixing Device and UUID array assignments in BluetoothAdapter; r=echou
|
2012-08-01 18:59:03 -07:00 |
|
Kyle Machulis
|
36e9fab6d3
|
Backed out changeset be7c3fa1a34d to fix commit message
|
2012-08-01 18:58:49 -07:00 |
|
Kyle Machulis
|
b03c9d8742
|
Bug 779702: Fixing Device and UUID array assignments in BluetoothAdapter
|
2012-08-01 18:57:39 -07:00 |
|
Kyle Machulis
|
d1592b7a77
|
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 |
|
Aryeh Gregor
|
e806eeab4f
|
Bug 777292 part 2 - Change all nsnull to nullptr
|
2012-07-30 17:20:58 +03:00 |
|
Kyle Machulis
|
d6a549555c
|
Bug 740744: Asynchronous dbus events for bluetooth, Start/StopDiscovery and device event firing; r=bent sr=mrbkap
|
2012-07-17 20:41:54 -07:00 |
|
Kyle Machulis
|
8b8e15f423
|
Bug 744349 - Create message distribution mechanism for DBus Bluetooth Signals; r=cjones
|
2012-06-02 11:23:16 -07:00 |
|
Kyle Machulis
|
dc57c39391
|
Bug 742044 - Create BluetoothManager object for managing multiple adapters and firmware loading; r=bent
|
2012-05-23 21:02:23 -07:00 |
|
Kyle Machulis
|
63d6921b7a
|
Backing out Bug 742044 - Bustage on B2G
|
2012-05-23 18:27:53 -07:00 |
|
Kyle Machulis
|
2c0c44fa04
|
Bug 742044 - Create BluetoothManager object for managing multiple adapters and firmware loading; r=bent
|
2012-05-23 18:21:05 -07:00 |
|
Kyle Machulis
|
eb68ccd524
|
Backing out Bug 742044 - contained extra patches for another bug
|
2012-05-23 18:18:24 -07:00 |
|
Kyle Machulis
|
93aca69abd
|
Bug 742044 - Create BluetoothManager object for managing multiple adapters and firmware loading; r=bent
|
2012-05-23 18:06:36 -07:00 |
|
Eric Chou
|
801de3662e
|
Bug 755190 - Enabling b2g bluetooth will lead to system crash, r=qDot
|
2012-05-15 12:47:27 -07:00 |
|
Ryan VanderMeulen
|
4725eb67fd
|
Re-land the patch for bug 732639 after a b2g clobber.
|
2012-05-07 17:50:25 -04:00 |
|
Ryan VanderMeulen
|
f55c9211bc
|
Backout 7a8607523522 (bug 732639) due to bustage. r=Boot2Fail
|
2012-05-07 17:21:01 -04:00 |
|
Kyle Machulis
|
2e3ae3ab58
|
Bug 732639: Create event loop thread for bluetooth dbus on gonk/linux; r=cjones
|
2012-05-07 14:04:59 -07:00 |
|
Eric Chou
|
cc9697f125
|
Bug 731361 - Change bluetooth firmware loading to use a DOMRequest based API. r=bent
|
2012-03-27 19:17:35 -04:00 |
|
Kyle Machulis
|
53b01aab66
|
Bug 729470 - Make bluedroid calls load via dlopen r=cjones
|
2012-03-08 15:14:06 -08:00 |
|
Eric Chou
|
8f17971cf6
|
Bug 729991: fix followup problems of bug 713116, r=ben
|
2012-03-04 19:54:01 -08:00 |
|
Eric Chou
|
287329db9a
|
Bug 713116 - B2G Bluetooth: Turn bluetooth adapter on/off - r=qDot
|
2012-02-23 16:55:48 +01:00 |
|
Kyle Machulis
|
0ec84a60d2
|
Bug 711601 - B2G Bluetooth Boiler Plate r=bent
|
2012-02-20 16:15:19 +01:00 |
|
Kyle Machulis
|
fc01ae2278
|
Back out bug 711601 (changeset 4c8aa2b0ca1c) due to qemu breakage
|
2012-02-17 15:54:27 -08:00 |
|
Kyle Machulis
|
55bf17714a
|
Bug 711601 - Bluetooth Implementation on B2G - patch 1: Boilerplate code for creating navigator.mozBluetooth object. r=bent
|
2012-02-14 17:51:52 -08:00 |
|