Commit Graph

134369 Commits

Author SHA1 Message Date
Gina Yeh
fe63c7c6f5 Bug 872907 - Patch 5: Handle A2DP status changed in AudioManager, r=echou, r=mwu 2013-06-08 23:26:28 +08:00
Gina Yeh
f200d479f6 Bug 872907 - Patch 4: Implement NotifyStatusChagned() and NotifyAudioManager(), r=echou, r=mrbkap 2013-06-08 23:26:01 +08:00
Gina Yeh
5520896f2f Bug 872907 - Patch 3: Handle Sink property change, r=echou, r=mrbkap 2013-06-08 23:25:41 +08:00
Gina Yeh
82daabdd9e Bug 872907 - Patch 2: Implement SendSinkMessage in BluetoothService, r=echou, r=mrbkap 2013-06-08 23:25:18 +08:00
Gina Yeh
42db248693 Bug 872907 - Patch 1: Implement BluetoothA2dpManager, r=echou, r=mrbkap 2013-06-08 23:24:29 +08:00
ffxbld
8ff2aa8041 No bug, Automated HSTS preload list update from host bld-linux64-ec2-615 - a=hsts-update 2013-06-08 03:26:28 -07:00
ffxbld
a6d9688c9d No bug, Automated blocklist update from host bld-linux64-ec2-645 - a=blocklist-update 2013-06-08 03:24:30 -07:00
Richard Newman
76eb3051b1 Merge m-c to s-c. 2013-06-07 13:04:39 -07:00
Ryan VanderMeulen
1b1910893f Merge inbound to m-c. 2013-06-07 15:27:47 -04:00
Sankha Narayan Guria
5304247273 Bug 880265 - Remove AudioBufferSourceNode.gain; r=ehsan 2013-06-08 00:55:04 +05:30
Gijs Kruitbosch
b8e1ddc572 Backing out 0acfbc3b4941 (Bug 844818) for b2g bustage. 2013-06-08 14:50:07 +02:00
Landry Breuil
21273d6caa Bug 618485: Finally remove uintptr_t word payload union member on 64BE, it grows jsval_layout size and is unused. r=luke 2013-06-08 12:49:10 +02:00
Landry Breuil
cf54e8459e Bug 844430: Add the correct build defines to fix libsctp on NetBSD/OpenBSD/Dragonfly. r=jesup 2013-06-08 12:48:30 +02:00
Jan Beich
11c8f04dc7 Bug 844818 - Make WebRTC aware of --enable-alsa/--enable-pulseaudio. r=jesup,ted 2013-06-08 12:47:31 +02:00
Jan Beich
f058316a11 Bug 878446 - Disable libyuv asm without SSSE3 as well. r=jesup 2013-06-08 12:44:26 +02:00
C. Scott Ananian
4026e0ce22 Bug 880807 - OdinMonkey: Fix signature of int multiplication by constant (r=luke)
--HG--
extra : rebase_source : 6b4d2bcb2261c9d466e5ce8098a70212a5b7c78f
2013-06-07 18:33:50 -04:00
Jon Coppeard
af7d9a0531 Bug 860573 - Part 2 - Use spare bits of wrapper cache flags for nsINode r=smaug 2013-06-08 09:54:59 +01:00
Jon Coppeard
fa77e296a8 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
51217ccdd9 Bug 877281 another followup for the Windows bustage. r=jandem pending 2013-06-08 00:06:39 -04:00
Boris Zbarsky
8aa1bc1906 Bug 877281 bustage fix. Deal with the fact that Value has 8-byte alignment. r=jandem 2013-06-07 23:40:35 -04:00
Jason Orendorff
f7e4b064e2 Bug 880575, part 5 - Factor out EvalAndPrint from ReadEvalPrintLoop. Use CompileOptions to eliminate some more manual memory management. Make ReadEvalPrintLoop take both input and output FILEs as arguments instead of using gOutFile. r=jwalden. 2013-06-07 22:25:08 -05:00
Jason Orendorff
f2e4058507 Bug 880575, part 4 - Use a Vector<char> instead of manually allocating the input buffer in ReadEvalPrintLoop. r=jwalden. 2013-06-07 22:25:08 -05:00
Jason Orendorff
7e6ac96fc1 Bug 880575, part 3 - Declare variables at initialization in ReadEvalPrintLoop. r=jwalden. 2013-06-07 22:25:08 -05:00
Jason Orendorff
666830c9de Bug 880575, part 2 - Factor out RunFile() from Process(). r=jwalden. 2013-06-07 22:25:07 -05:00
Jason Orendorff
1a1fb08c55 Bug 880575, part 1 - Factor out ReadEvalPrintLoop() from Process(). r=jwalden. 2013-06-07 22:25:07 -05:00
Boris Zbarsky
6a359eb980 Bug 879628. Don't screw up the text from earlier counters when using counters() with various list styles. r=dbaron 2013-06-07 22:45:46 -04:00
Boris Zbarsky
f68f0da53c 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
9f09fecc19 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
aec6c97d07 Bug 877281 part 5. Add a set() method to Rooted. r=terrence 2013-06-07 22:45:45 -04:00
Boris Zbarsky
19af9fb8fa 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
77568d97df Bug 877281 part 3. Rename valMutableHandle to mutableVal. r=peterv 2013-06-07 22:45:45 -04:00
Boris Zbarsky
34e85404c7 Bug 877281 part 2. Eliminate uses of ${valPtr} in bindings conversions. r=peterv 2013-06-07 22:45:45 -04:00
Boris Zbarsky
ec718b51e3 Bug 877281 part 1. Convert WebIDL bindings to using something CallArgs-like. r=peterv,jandem 2013-06-07 22:45:44 -04:00
Jeff Gilbert
92a42f92c9 Bug 870232 - Enable 'webgl' requests for Desktop FF. - r=bjacob 2013-06-07 17:44:51 -07:00
Shane Caraveo
4da46f1fad bug 880741 add indexeddb to frameworker, r=gavin 2013-06-07 11:25:15 -07:00
Rick Eyre
3800bbb044 Bug 833382 - Implement WebVTTLoadListener r=cpearce,bz
- Implemented WebVTTLoadListener to manage the webvtt parser.
- TextTrackCue now handles the conversion of webvtt nodes to
  anonymous content which will be displayed on the video div
  overlay.
- HTMLTrackElement manages the lifetime of the WebVTTLoadListener.
2013-06-10 08:30:00 -07:00
Richard Newman
54d6aac139 Bug 880549 - Include add-on blocklist state in payload. r=mfinkle 2013-06-07 10:20:59 -07:00
Richard Newman
ceb06e3834 Bug 880171 - Part 2: handle failure to retrieve storage from EnvironmentBuilder. r=nalexander 2013-06-07 10:20:59 -07:00
Richard Newman
f4bc73d86a Bug 880171 - Part 1: return null if unable to retrieve storage in EnvironmentBuilder. r=nalexander 2013-06-07 10:20:58 -07:00
Nick Alexander
0a4b821aa0 Bug 879956 - Don't print email address to logcat when syncing. r=rnewman 2013-06-07 10:20:58 -07:00
Fabrice Desré
0f493b39d4 Bug 878388 - errors when uninstalling applications 'msg is undefined' r=ferjm a=leo 2013-06-07 09:52:58 -07:00
Wes Kocher
ded413d641 Bug 880558 - Uplift addon-sdk to firefox r=me 2013-06-07 09:43:59 -07:00
Jared Wein
4fa2ec7687 Bug 880573 - Remove duplication between do_report_result and _do_check_neq. r=ted 2013-06-07 12:44:00 -04:00
Jared Wein
715dea6464 Bug 880568 - _do_check_eq/_do_check_neq/do_print should put double-quotes around argument if the typeof argument is 'string'. r=ted 2013-06-07 12:43:48 -04:00
Sotaro Ikeda
2da50de51d Bug 880268 - Handle default pixel format in BytesPerPixelForPixelFormat(). r=vlad 2013-06-07 12:05:03 -04:00
Ryan VanderMeulen
c06e695930 Merge m-c to birch. 2013-06-07 11:34:26 -04:00
Ryan VanderMeulen
577b8c5fbf Merge m-c to birch. 2013-06-07 11:13:25 -04:00
Ryan VanderMeulen
bb43b9b6b6 Merge inbound to m-c. 2013-06-07 11:10:54 -04:00
Ryan VanderMeulen
5ef3e56951 Merge fx-team to m-c. 2013-06-07 11:05:46 -04:00
Ryan VanderMeulen
5108144eb8 Backed out changeset 4c129a5676eb (bug 871485) for mochitest-1 failures. 2013-06-07 09:57:05 -04:00