Commit Graph

14609 Commits

Author SHA1 Message Date
Albert Crespell
d8f63cf21c Bug 879793 - Update tests. r=clian 2013-06-07 18:57:07 +02:00
Albert Crespell
81847104db Bug 879793 - Update stats when network interface is unregistered. r=clian 2013-06-06 20:40:50 +02:00
Ryan VanderMeulen
8a97e927da Merge fx-team to m-c. 2013-06-11 15:00:51 -04:00
Mihai Sucan
2aea3f340c Bug 861338 - [browserconsole] Cache Console.jsm API calls with ConsoleAPIStorage.jsm; r=jwalker 2013-06-07 20:13:48 +03:00
Eric Chou
0adbf805bd Bug 876823 - Fire DOMRequest.onerror event when Bluetooth*Manager.Connect() fails, r=gyeh 2013-06-11 18:24:19 +08:00
Ed Morley
a5fe50957e Merge mozilla-central and birch 2013-06-11 09:38:18 +01:00
Gina Yeh
4f77f431bf Bug 881606 - BluetoothA2dpManager doesn't receive any sink property changed, r=echou 2013-06-11 14:47:48 +08:00
Phil Ringnalda
2d5d041bc3 Back out efdf2d801664 (bug 881128) for disregarding the DANGER of not dealing with test_interfaces.html 2013-06-10 19:26:45 -07:00
David Zbarsky
01faca23df Bug 881128 - Remove nsIDOMGetSVGDocument r=bz 2013-06-10 17:50:42 -07:00
Ehsan Akhgari
1922757878 Bug 815643 - Part 1: Implement the DOM bindings for ConvolverNode; r=roc
--HG--
extra : rebase_source : 9f6853dcaeeac1f36aa8c2ee90991a7f0ea0b145
2013-06-10 16:07:55 -04:00
Masatoshi Kimura
043ca816ee Bug 881252 - Warn use of getUserData() or setUserData(). r=bz 2013-06-11 07:41:42 +09:00
Guillaume Abadie
b86d0dd632 Bug 879954 - Implement OES_texture_float_linear - r=bjacob 2013-06-10 16:00:52 -04:00
Paul Adenot
7bd9ae8ec4 Bug 865244 - Implement AudioContext.destination.maxChannelCount. r=ehsan 2013-06-10 19:32:28 +02:00
Vincent Chang
8f98f7255f Bug 868913 - [Buri][Tethering]PC can't display RNDIS com port when reset handset. r=mrbkap 2013-05-16 19:39:58 +08:00
Ryan VanderMeulen
52f3758e3b Merge m-c to inbound. 2013-06-10 12:26:38 -04:00
Joey Armstrong
fbe62ceada bug 870370: move EXTRA_COMPONENTS to moz.build (file batch #1). r=mshal 2013-06-10 11:30:03 -04:00
Joey Armstrong
d47bba4871 bug 870370: move EXTRA_COMPONENTS to moz.build (file batch #2). r=mshal 2013-06-10 11:19:28 -04:00
Kartikaya Gupta
752fd9f999 Bug 879004 - Add types to the remaining methods in GeckoContentController. r=kentuckyfriedtakahe 2013-06-10 09:05:44 -04:00
Kartikaya Gupta
8eed7300fd Bug 879004 - Convert the async scroll offset fields in APZC.h to CSSPoints. r=kentuckyfriedtakahe 2013-06-10 09:05:44 -04:00
Kartikaya Gupta
480d3251f0 Bug 879004 - Change FrameMetrics.mViewport to be a CSSRect. r=BenWa 2013-06-10 09:05:43 -04:00
Martin Stransky
82972db84e Bug 879515 - Port GTK2 to GTK3 - dom/plugins fixes. r=karlt 2013-06-10 08:36:26 -04:00
Ed Morley
dd00dada0a Merge latest green birch changeset and mozilla-central 2013-06-10 10:06:11 +01:00
Gina Yeh
1d2d5b22e3 Bug 878745 - BluetoothService cleanup, r=echou 2013-06-10 12:18:00 +08:00
Szu-Yu Chen [:aknow]
986867f111 Bug 875243 - B2G RIL: fix some coding style. r=hsinyi 2013-06-10 10:41:14 +08:00
Gina Yeh
9b9e96c828 Bug 872907 - Patch 5: Handle A2DP status changed in AudioManager, r=echou, r=mwu 2013-06-08 23:26:28 +08:00
Gina Yeh
a6765ae76d Bug 872907 - Patch 4: Implement NotifyStatusChagned() and NotifyAudioManager(), r=echou, r=mrbkap 2013-06-08 23:26:01 +08:00
Gina Yeh
e7d0099af2 Bug 872907 - Patch 3: Handle Sink property change, r=echou, r=mrbkap 2013-06-08 23:25:41 +08:00
Gina Yeh
406431e0fa Bug 872907 - Patch 2: Implement SendSinkMessage in BluetoothService, r=echou, r=mrbkap 2013-06-08 23:25:18 +08:00
Gina Yeh
17b3651391 Bug 872907 - Patch 1: Implement BluetoothA2dpManager, r=echou, r=mrbkap 2013-06-08 23:24:29 +08:00
Sankha Narayan Guria
2bfc77e0ce Bug 880265 - Remove AudioBufferSourceNode.gain; r=ehsan 2013-06-08 00:55:04 +05:30
Jon Coppeard
72e8eed021 Bug 860573 - Part 1 - Store wrapper cache flags separately to the object pointer r=smaug 2013-06-08 09:53:21 +01:00
Boris Zbarsky
af877c0a97 Bug 872669. Slightly speed up our named proxy gets by making use of the inline chars/length getters we can have when our id is an atom. r=waldo,peterv 2013-06-07 22:45:46 -04:00
Boris Zbarsky
6a7b47964f Bug 877281 part 6. Replace ${jsvalPtr} with a MutableHandle ${jsvalHandle}. r=peterv
It's a little unfortunate that we need both ${jsvalHandle} and
${jsvalRef}, but the only other option is to consistently have a
MutableHandle in this code.  If the thing we have to work with is a
Rooted, that means doing JS::MutableHandle<JS::Value>(&myRooted) as
the thing to substitute for ${jsvalHandle}.  Just using "&myRooted"
doesn't work, because things like "&myRooted.set()" or
"&myRooted.address()" fail, even if parenthesized as
"(&myRooted).set()", because &myRooted is actually a Rooted*, not a
MutableHandle.

We could go the JS::MutableHandle<JS::Value>(&myRooted) route if
desired; it would primarily uglify dictionary and sequence to-js
conversions.  With the setup in this patch, ideally it looks pretty
idiomatic except for the use of .set() instead of operator= on Rooted.
2013-06-07 22:45:46 -04:00
Boris Zbarsky
c953830dd1 Bug 877281 part 4. Eliminate uses of ${valHandle} in binding conversions and make ${val} be a handle. r=peterv 2013-06-07 22:45:45 -04:00
Boris Zbarsky
5e4e46a051 Bug 877281 part 3. Rename valMutableHandle to mutableVal. r=peterv 2013-06-07 22:45:45 -04:00
Boris Zbarsky
089998b640 Bug 877281 part 2. Eliminate uses of ${valPtr} in bindings conversions. r=peterv 2013-06-07 22:45:45 -04:00
Boris Zbarsky
1cf3024899 Bug 877281 part 1. Convert WebIDL bindings to using something CallArgs-like. r=peterv,jandem 2013-06-07 22:45:44 -04:00
Chuck Lee
102f8e26f0 Bug 853715 - 0006. Xpcshell test cases for SI and SL PDU helper. r=vicamo 2013-05-30 14:22:50 +08:00
Chuck Lee
f7da37cb65 Bug 853715 - 0005. Handle incoming Wap Push messages. r=vicamo
--HG--
rename : dom/mobilemessage/src/ril/WapPushManager.js => dom/wappush/src/gonk/WapPushManager.js
2013-06-04 18:51:02 +08:00
Chuck Lee
da13197311 Bug 853715 - 0004. Add PDU helper for decoding SL messages. r=vicamo 2013-05-30 14:22:46 +08:00
Chuck Lee
50a77b2320 Bug 853715 - 0003. Add PDU helper for decoding SI messages. r=vicamo 2013-05-30 14:22:44 +08:00
Chuck Lee
7bd8f2646d Bug 853715 - 0002. Add PDU helper for decoding messages in WBXML format. r=vicamo 2013-06-04 14:39:53 +08:00
Chuck Lee
98009d9dc9 Bug 853715 - 0001. Create DOM skeletion for WAP Push. r=vicamo 2013-06-04 14:39:51 +08:00
Fabrice Desré
a0d6ead56d Bug 878388 - errors when uninstalling applications 'msg is undefined' r=ferjm a=leo 2013-06-07 09:52:58 -07:00
Ryan VanderMeulen
e368b7a7ba Bug 875449 - Bustage fix. 2013-06-07 08:54:13 -04:00
Anand Soni
8508bc64cc Bug 875449 - Rename ListBase to DOMProxy, since these proxies are used for all sorts of objects that aren't in any way like lists. r=djvj 2013-06-07 00:02:26 +05:30
Ryan VanderMeulen
5d668fe5f6 Merge m-c to inbound. 2013-06-07 08:01:37 -04:00
Vicamo Yang
f540811326 Bug 874273: B2G RIL - return correct voice network type. r=yoshi 2013-06-07 16:50:10 +08:00
Vicamo Yang
e389424b1b Bug 879671 - 2/2: add ril.cellbroadcast.disabled pref to disable Cell Broadcast completely. r=yoshi 2013-06-07 15:32:24 +08:00
Vicamo Yang
5ee2afcc8c Bug 879671 - 1/2: pass multiple initial options to ril_worker. r=yoshi 2013-06-07 15:32:20 +08:00