Commit Graph

293745 Commits

Author SHA1 Message Date
Geoff Brown
15f2adef52 Bug 814805 - Do not use run-as for android xpcshell tests; r=wlach 2012-12-18 22:18:00 -07:00
Ehsan Akhgari
09e91d17f9 Bug 822020 - Remove the global PB specific code from the toolkit downloads UI; r=jdm 2012-12-19 00:13:43 -05:00
Ehsan Akhgari
75224cdbfd Bug 822019 - Remove the global PB specific code from the Telemetry; r=jdm 2012-12-19 00:12:57 -05:00
Ehsan Akhgari
68ec922cd3 Bug 822016 - Remove the global PB specific code from the tabview UI; r=jdm 2012-12-19 00:12:20 -05:00
Randell Jesup
9f08e63e8f Bug 822704: Enable WEBRTC_TRACE() logging via NSPR_LOG_MODULES and rename signaling log module r=derf 2012-12-18 23:27:38 -05:00
Brian Hackett
57b542ce27 Bug 822116 - x86/x64 tuning for backtracking allocator, r=jandem. 2012-12-18 21:26:09 -07:00
Patrick McManus
f63a5f9802 bug 819044 - better spdy stream cleanup when handling goaway r=honzab 2012-12-18 22:28:24 -05:00
Jeff Gilbert
fd4db7f78f Bug 822114 - Save and restore bound tex unit in DeleteTexture - r=bjacob 2012-12-18 19:23:03 -08:00
Kannan Vijayan
bd51eae35f Bug 819635 - Add explicit shape change check before generating setprop-add stub. r=dvander 2012-12-18 22:17:21 -05:00
Makoto Kato
9a7ebf8914 Bug 802527 - Support Android NDK r8b for x86 android build. r=glandium 2012-12-19 11:49:44 +09:00
Robert Strong
75a0f646a9 Update xpcshell skip-if reason - Bug 821344 - test_bug595059.js and test_0081_prompt_uiAlreadyOpen.js update tests fails in B2G due to custom nsIUpdatePrompt. r=ahalberstadt, DONTBUILD 2012-12-18 18:44:17 -08:00
Justin Lebar
3a8354869f Bug 821440 - Allow the B2G homescreen to run in the background with a decreased oom_score_adj compared to vanilla background apps. r=cjones 2012-12-18 21:37:35 -05:00
Oleg Romashin
09597e2391 Bug 822115 - nglayout.debug.widget_update_flashing pref cache is not thread safe. r=mattwoodrow 2012-12-16 11:25:04 -08:00
Ryan VanderMeulen
f440c12fc5 Backed out changeset f7fee43555d8 (bug 822831) for bustage. 2012-12-18 21:26:39 -05:00
Steve Fink
7df87ecc1a Bug 822831 - Do not use Unrooted in a signal handler. r=billm 2012-12-18 17:33:25 -08:00
Rob Wood
fc49360881 Bug 813978 - Update SMS tests as required for SMS changes in 813978; r=fabrice 2012-12-17 14:16:28 -08:00
Fabrice Desré
6ccea69e7c Bug 813978 - [SMS API] getMessages cursor is slow when SMS database contains large number of messages [r=ferjm] 2012-12-10 13:03:59 -08:00
Ed Morley
22c3980e58 Backout 22f9cf3cc575 (bug 820463) for breaking marionette on a CLOSED TREE 2012-12-19 01:23:00 +00:00
Ed Morley
13a8878f0f Backout 966b04dba626 (bug 822114) for failing to build on any platform 2012-12-19 01:22:45 +00:00
Justin Lebar
be3b9d9bca Bug 819791 - Part 11: Make nsTArray and friends' copy constructors explicit. r=bz 2012-12-18 20:16:07 -05:00
Justin Lebar
72544499cb Bug 819791 - Part 10: Don't return FallibletArrays by value in Variant.h. r=mak
Returning *TArray's by value isn't compattible with explicit *TArray
copy constructors, which will be added in a later cset.
2012-12-18 20:16:07 -05:00
Justin Lebar
c621ba81f7 Bug 819791 - Part 9: Use explicit TArray copy constructors in IPDL generated code. r=cjones
This cset makes two nop changes to generated IPDL code.

1) Change an instance of

  InfallibleTArray<Foo> foo = InfallibleTArray<Foo>();

to

  InfallibleTArray<Foo> foo;

2) Change an instance of

  InfallibleTArray<Foo> foo = bar;

to

  InfallibleTArray<Foo> foo(bar);
2012-12-18 20:16:07 -05:00
Justin Lebar
fcaacaf877 Bug 819791 - Part 8: Use explicit TArray copy constructors in FrameLayerBuilder. r=roc 2012-12-18 20:16:06 -05:00
Justin Lebar
336e8ead35 Bug 819791 - Part 7: Use explicit TArray copy constructors in Bluetooth code. r=qdot 2012-12-18 20:16:06 -05:00
Justin Lebar
78bc0372cf Bug 819791 - Part 6: Remove unnecessary TArray copies in dom/indexedDB. r=bent 2012-12-18 20:16:06 -05:00
Justin Lebar
cd3ff297ee Bug 819791 - Part 5: Remove an unnecessary TArray copy in hal/sandbox. r=mounir 2012-12-18 20:16:06 -05:00
Justin Lebar
c32ab06a51 Bug 819791 - Part 4: Remove an unnecessary TArray copy in OrientationObserver.cpp. r=mounir 2012-12-18 20:16:06 -05:00
Justin Lebar
e73a12f35f Bug 819791 - Part 3: Make typeof nsTArray == typeof InfallibleTArray. r=bz
Also make typeof nsAutoTArray == typeof AutoInfallibleTArray and switch
files to using nsTArrayForwardDeclare.h.
2012-12-18 20:16:06 -05:00
Justin Lebar
6fcdca9677 Bug 819791 - Part 2: Don't use nsTArray allocators in IPCMessageUtils traits. r=cjones
The allocators will be restricted to non-public use in a later patch.
2012-12-18 20:16:06 -05:00
Justin Lebar
3ff706b49a Bug 819791 - Part 1: Remove nsTArrayDefaultAllocator, replacing it unconditionally with nsTArrayInfallibleAllocator. r=bz 2012-12-18 20:16:06 -05:00
Justin Lebar
63aae26bf9 Bug 819791 - Part 0: Deserialize fallibly in IPCMessageUtils.h. r=cjones
Comments in the code are asking for us to deserialize fallibly; it looks
like we just forgot to change this when we made nsTArray infallible.
2012-12-18 20:16:06 -05:00
Boris Zbarsky
3dfc80459c Bug 819523 part 2. Allow Nullable<> of various array types to work sanely. r=jlebar 2012-12-18 20:16:05 -05:00
Boris Zbarsky
6efc316628 Bug 819523 part 1. Make it possible to use the various-allocator nsTArrays interchangeably as long as you're working with const objects. r=jlebar 2012-12-18 20:16:05 -05:00
James Kitchener
1a57af8f67 Bug 818620 - Evaluate all arguments if NaN present in Math.{max, min}(). r=jwalden
--HG--
extra : rebase_source : 9f451ebf817c640428030d338368da4809aac69d
2012-12-18 20:05:43 -05:00
Bill McCloskey
d96eecbc71 Bug 821340 - Add test (r=test) 2012-12-18 17:02:57 -08:00
Jeff Gilbert
a543572f69 Bug 822114 - Save and restore bound tex unit in DeleteTexture - r=bjacob 2012-12-18 16:47:03 -08:00
Sriram Ramasubramanian
0f66c11b71 Bug 811238: Cache-color hint for ExpandableListView. [r=mfinkle]
--HG--
extra : rebase_source : a4b294220f7257fb27e400128e66c8ec96409879
2012-12-18 14:29:01 -08:00
Sriram Ramasubramanian
7c79f4b01d Bug 822830: Add ForwardButton to GeckoViewsFactory. [r=mfinkle]
--HG--
rename : browser/components/sessionstore/test/browser_248970_b_perwindowpb.js => browser/components/sessionstore/test/browser_248970_b.js
extra : rebase_source : df8d830faba3060dae01bb61595273d0fc7396a7
2012-12-18 14:20:01 -08:00
Chris Jones
4be2c5bab6 Back out bug 814252. 2012-12-18 16:19:54 -08:00
Mark Hammond
e665b835db Bug 822508 - allow social providers to specify null as the profile. r=gavin 2012-12-19 11:05:37 +11:00
Gavin Sharp
983d819a53 bug 820489: re-enable browser_social_multiprovider now that we've (hopefully) fixed it
--HG--
extra : rebase_source : cced1fff25963bb60aadb6fd65f0e2f7fca4330d
2012-12-18 15:47:31 -08:00
Norbert Lindenberg
0efc18e74f Bug 769872 - Add utilities for self-hosted JavaScript code. r=till
--HG--
rename : js/src/builtin/array.js => js/src/builtin/Array.js
extra : rebase_source : 955ce06e402f76c08eeb0a69b142d4d14a7281c4
2012-12-18 18:44:43 -05:00
Ryan VanderMeulen
e159649875 Merge m-c to inbound. 2012-12-18 18:45:16 -05:00
Brian Hackett
c236f2958e Bug 822089 - Don't compile off thread when profiling scripts, r=dvander. 2012-12-18 16:34:34 -07:00
Ryan VanderMeulen
f987db21fc Backed out changeset a7d5ea538c57 (bug 806736) for test failures. 2012-12-18 18:27:36 -05:00
Mike Habicher
49025fcfff Bug 822531 - Fix regression of bug 783682 caused by bug 779139. r=mwu 2012-12-18 18:19:38 -05:00
Cameron McCormack
3b69039f3d Bug 820148 - Add a RELEASE_BUILD macro that can be used within pref js files. r=ted 2012-12-19 10:10:22 +11:00
Olli Pettay
89dc70aa3d Bug 790978 - Convert MutationObserver to webidl, followup
--HG--
extra : rebase_source : ea9be8eab6c4274ca08742859fdf0a4eb4aec4db
2012-12-18 18:56:45 +02:00
Olli Pettay
68fe3c1606 Bug 790978 - Convert MutationObserver to webidl, r=bz
--HG--
extra : rebase_source : 86b4120ef1f3bedc6554761af715de8413f01343
2012-12-18 16:50:52 +02:00
Ben Turner
ddac5f9767 Bug 814026, r=mrbkap. 2012-12-18 08:01:42 -08:00