fcb1cb11935f91aa0778837f98235123e5422ca0: Bug 784126 - Fix JSDOMParser textContent setter. r=lucasr
Brian Nicholson <bnicholson@mozilla.com> - Wed, 22 Aug 2012 10:15:46 -0700 - rev 103029
Push
13782 by bnicholson@mozilla.com at Wed, 22 Aug 2012 17:16:14 +0000
Bug 784126 - Fix JSDOMParser textContent setter. r=lucasr
91cba558c70c3a08699ba5c4958239f2c77f6d33: Bug 769671 - Don't use IOException(Throwable cause), since it is only available in API level >= 9. r=rnewman
Nick Alexander <nalexander@mozilla.com> - Wed, 22 Aug 2012 09:49:28 -0700 - rev 103028
Push
13781 by nalexander@mozilla.com at Wed, 22 Aug 2012 16:55:27 +0000
Bug 769671 - Don't use IOException(Throwable cause), since it is only available in API level >= 9. r=rnewman
0f34437ce5332e039d7ecb37ee9f8b754971e0f0: Bug 784612 - Remove old XUL content autoScale hack from meta viewport code [r=mfinkle,jwir3]
Matt Brubeck <mbrubeck@mozilla.com> - Wed, 22 Aug 2012 09:42:24 -0700 - rev 103027
Push
13780 by mbrubeck@mozilla.com at Wed, 22 Aug 2012 16:44:32 +0000
Bug 784612 - Remove old XUL content autoScale hack from meta viewport code [r=mfinkle,jwir3]
2a9b3c766512e7841b7393be8f425e7c78738997: Bug 782659: Fix assertions about empty registers when profiling is enabled on ARM. r=bhackett
Alex Crichton <acrichton@mozilla.com> - Tue, 21 Aug 2012 17:57:28 -0700 - rev 103026
Push
13779 by acrichton@mozilla.com at Wed, 22 Aug 2012 16:40:23 +0000
Bug 782659: Fix assertions about empty registers when profiling is enabled on ARM. r=bhackett
cd82204dcb678c08b63a7774c7af0bbda292dcf8: Bug 579517 - Part 8: Automatically convert some more NSPR numeric type usages that were landed on mozilla-inbound; r=bsmedberg
Ehsan Akhgari <ehsan@mozilla.com> - Wed, 22 Aug 2012 12:32:21 -0400 - rev 103025
Push
13778 by eakhgari@mozilla.com at Wed, 22 Aug 2012 16:33:46 +0000
Bug 579517 - Part 8: Automatically convert some more NSPR numeric type usages that were landed on mozilla-inbound; r=bsmedberg
9c39400dd21d13d416759339f0505688e119629c: Merge the landing of bug 579517 to mozilla-inbound
Ehsan Akhgari <ehsan@mozilla.com> - Wed, 22 Aug 2012 12:12:15 -0400 - rev 103024
Push
13778 by eakhgari@mozilla.com at Wed, 22 Aug 2012 16:33:46 +0000
Merge the landing of
bug 579517 to mozilla-inbound
88e47f6905e9b154027744f6b2bb09034cd860b0: Bug 579517 - Part 5: Add missing StandardInteger.h #includes where needed; r=bsmedberg
Ehsan Akhgari <ehsan@mozilla.com> - Wed, 08 Aug 2012 17:08:17 -0400 - rev 103023
Push
13778 by eakhgari@mozilla.com at Wed, 22 Aug 2012 16:33:46 +0000
Bug 579517 - Part 5: Add missing StandardInteger.h #includes where needed; r=bsmedberg
Landing on a CLOSED TREE
325891716910101f51fbb15f2bdd4730fe53cdf9: Bug 579517 - Part 4: Manually rewrite some parts of the code base not covered by the automated conversion; r=bsmedberg
Ehsan Akhgari <ehsan@mozilla.com> - Wed, 22 Aug 2012 11:59:54 -0400 - rev 103022
Push
13778 by eakhgari@mozilla.com at Wed, 22 Aug 2012 16:33:46 +0000
Bug 579517 - Part 4: Manually rewrite some parts of the code base not covered by the automated conversion; r=bsmedberg
8e62cbb35f67193e155d17d12945776fd4accb8b: Bug 579517 - Part 3: Remove NSPR types from the IPDL parser's built-in type list; r=bsmedberg
Ehsan Akhgari <ehsan@mozilla.com> - Wed, 22 Aug 2012 11:59:02 -0400 - rev 103021
Push
13778 by eakhgari@mozilla.com at Wed, 22 Aug 2012 16:33:46 +0000
Bug 579517 - Part 3: Remove NSPR types from the IPDL parser's built-in type list; r=bsmedberg
c0726f9e6dc201c0521dc3a8b9e87bc71ee99913: Bug 579517 - Part 2: Make the IDL parser aware of stdint types; r=bsmedberg
Ehsan Akhgari <ehsan@mozilla.com> - Wed, 22 Aug 2012 11:57:22 -0400 - rev 103020
Push
13778 by eakhgari@mozilla.com at Wed, 22 Aug 2012 16:33:46 +0000
Bug 579517 - Part 2: Make the IDL parser aware of stdint types; r=bsmedberg
a16372ce30b5f6b747246b01fcd215a4bf3b6342: Bug 579517 - Part 1: Automated conversion of NSPR numeric types to stdint types in Gecko; r=bsmedberg
Ehsan Akhgari <ehsan@mozilla.com> - Wed, 22 Aug 2012 11:56:38 -0400 - rev 103019
Push
13778 by eakhgari@mozilla.com at Wed, 22 Aug 2012 16:33:46 +0000
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
2a040b73f268165f182560b5ff8d3023a857aecd: Bug 784550 - Fix overly-conservative deoptimization of assignment to named lambda (r=jorendorff)
Luke Wagner <luke@mozilla.com> - Tue, 21 Aug 2012 18:26:22 -0700 - rev 103018
Push
13777 by lwagner@mozilla.com at Wed, 22 Aug 2012 15:38:52 +0000
Bug 784550 - Fix overly-conservative deoptimization of assignment to named lambda (r=jorendorff)
2e06b3299a5e7e1325062d4bdb65a94705900ffb: Bug 741621 - Marketplace app should open for market urls. r=mfinkle
Wes Johnston <wjohnston@mozilla.com> - Wed, 22 Aug 2012 08:37:14 -0700 - rev 103017
Push
13776 by wjohnston@mozilla.com at Wed, 22 Aug 2012 15:37:29 +0000
Bug 741621 - Marketplace app should open for market urls. r=mfinkle
1c14ca0ce21fef10640fe6e633c025cc4d96333e: Bug 781061 - System notifications should call back to the process that created them. r=blassey
Wes Johnston <wjohnston@mozilla.com> - Wed, 22 Aug 2012 08:37:08 -0700 - rev 103016
Push
13776 by wjohnston@mozilla.com at Wed, 22 Aug 2012 15:37:29 +0000
Bug 781061 - System notifications should call back to the process that created them. r=blassey
8ce5250fe80f401eb955fade014cab9f9bb885ec: Bug 774062 - Make configure error out if the DirectX SDK redistributables cannot be found; r=ted
Ed Morley <emorley@mozilla.com> - Wed, 22 Aug 2012 15:11:21 +0100 - rev 103015
Push
13775 by emorley@mozilla.com at Wed, 22 Aug 2012 14:11:58 +0000
Bug 774062 - Make configure error out if the DirectX SDK redistributables cannot be found; r=ted
3ded80c6a2da0f5bbf6475e7ccaba395f152bc7d: Bug 784621 - Empty address bar isn't always focused after startup. r=enn
Dão Gottwald <dao@mozilla.com> - Wed, 22 Aug 2012 16:08:12 +0200 - rev 103014
Push
13774 by dgottwald@mozilla.com at Wed, 22 Aug 2012 14:09:21 +0000
Bug 784621 - Empty address bar isn't always focused after startup. r=enn
4c0af103f0f84d44088302d82087f6f2a6c3de3d: Backout d62929fa4325 for talos crashes
Ed Morley <emorley@mozilla.com> - Wed, 22 Aug 2012 14:53:11 +0100 - rev 103013
Push
13773 by emorley@mozilla.com at Wed, 22 Aug 2012 13:53:56 +0000
Backout d62929fa4325 for talos crashes
d62929fa43251d582362225df3dcc9033b8c19be: Allow purging analysis-temporary while retaining jitcode, bug 778724. r=luke
Brian Hackett <bhackett1024@gmail.com> - Wed, 22 Aug 2012 06:27:18 -0600 - rev 103012
Push
13772 by bhackett@mozilla.com at Wed, 22 Aug 2012 12:29:02 +0000
Allow purging analysis-temporary while retaining jitcode,
bug 778724. r=luke
5f0e24568cbb5801171fd94807f526f195f7f0dd: Bug 781693 - Accept ';' as delimiter after 'base64' keyword. r=bz
julian.reschke@gmx.de - Wed, 22 Aug 2012 06:57:02 -0400 - rev 103011
Push
13771 by ryanvm@gmail.com at Wed, 22 Aug 2012 10:58:14 +0000
Bug 781693 - Accept ';' as delimiter after 'base64' keyword. r=bz
8e4f89f8c4513069ca75bfb634d59b1b64c789b6: Bug 783463 - Don't include <malloc.h>, it's unused. r=dougt
Jan Beich <jbeich@tormail.org> - Wed, 22 Aug 2012 06:53:34 -0400 - rev 103010
Push
13770 by ryanvm@gmail.com at Wed, 22 Aug 2012 10:53:31 +0000
Bug 783463 - Don't include <malloc.h>, it's unused. r=dougt