Mats Palmgren
|
d5826be6d7
|
Bug 786533 - Replace NS_MIN/NS_MAX with std::min/std::max and #include <algorithm> where needed. r=ehsan
|
2013-01-15 13:22:03 +01:00 |
|
Ms2ger
|
98621c6b91
|
Bug 810668 - Fix some gcc4.6 build warnings; r=bz
|
2012-12-02 09:54:55 +01:00 |
|
Kartikaya Gupta
|
2898501127
|
Bug 814418 - Fix some warnings about unused variables. r=ehsan
|
2012-11-30 11:06:37 -05:00 |
|
Isaac Aggrey
|
32fe8546ca
|
Bug 802706: Remove usage of NSPRFormatTime.h from tree; r=ehsan
|
2012-11-14 13:14:21 -06:00 |
|
Ehsan Akhgari
|
7936d28c91
|
Backed out changeset da25394a8b55 (bug 802706) for build bustage
|
2012-11-14 13:24:12 -08:00 |
|
Isaac Aggrey
|
f091cc8076
|
Bug 802706: Remove usage of NSPRFormatTime.h from tree; r=ehsan,wtc
|
2012-11-14 13:14:21 -06:00 |
|
Nick Hurley
|
e7f284c9d3
|
Bug 536324 part 3 - Change consumers of nsIChannel. r=sworkman
|
2012-10-22 10:51:07 -07:00 |
|
Brian Smith
|
035e8b8432
|
Bug 794510: Part 6 - Fixups needed to build on Windows and Android and Mac OS X debug, plus shorten comment to be less than 80 columns; r=ehsan
|
2012-10-18 15:55:48 -04:00 |
|
Isaac Aggrey
|
6058184f25
|
Bug 794510: Part 3 - create NSPRFormatTime.h with temporarily undef'd NO_NSPR_10_SUPPORT for compatibility; r=ehsan
|
2012-10-11 13:16:29 -05:00 |
|
Mounir Lamouri
|
7c3257e34c
|
Bug 792828 - Fix warnings in netwerk/test/. r=Ms2ger
|
2012-09-21 11:28:56 +01:00 |
|
Makoto Kato
|
507b76f776
|
Bug 784912 - nsIStreamListener.onDataAvailable should handle 64-bit offset. r=honza
|
2012-09-06 11:41:02 +09:00 |
|
Aryeh Gregor
|
fc63980e27
|
Bug 782594 - Don't return nsresult from main() (netwerk/); r=bz
|
2012-08-07 20:17:27 +03:00 |
|
Randell Jesup
|
29ac5c0b8c
|
Bug 773151: Convert nsCAutoString->nsAutoCString CLOSED TREE r=bsmedberg
|
2012-09-01 22:35:17 -04:00 |
|
Valentin Gosu ext:(%2C%20Jason%20Duell%20%3Cjduell.mcbugs%40gmail.com%3E%2C%20Ms2ger%20%3CMs2ger%40gmail.com%3E)
|
79b6b7fa0b
|
Bug 745296 - Enable FAIL_ON_WARNINGS in more of /netwerk r=jduell
|
2012-08-25 11:19:00 -07:00 |
|
Ehsan Akhgari
|
8c296bbcd4
|
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 |
|
Ms2ger
|
8fcd7f8f16
|
Bug 780387 - Part d: Stop using PRFloat64; r=bsmedberg
|
2012-08-09 09:09:42 +02:00 |
|
Aryeh Gregor
|
57c0ad57fb
|
Bug 777292 part 2 - Change all nsnull to nullptr
|
2012-07-30 17:20:58 +03:00 |
|
Ehsan Akhgari
|
c8be8664d9
|
Bug 758992 - Make the classes which use the XPCOM nsISupports implementation macros final, to avoid the warning about deleting using a pointer to a base class with virtual functions and no virtual dtor (netwerk parts); r=jduell
|
2012-06-05 23:18:25 -04:00 |
|
Gervase Markham
|
87620f5676
|
Bug 716478 - update licence to MPL 2.
|
2012-05-21 12:12:37 +01:00 |
|
Matt Brubeck
|
f08ab73a53
|
Back out c209fea124e1 (bug 754198) because of Win64 build failure
|
2012-05-11 13:23:49 -07:00 |
|
Fabrice Desré
|
fe66918d12
|
Bug 754198 - Warning treated as error in jemalloc.c. Build busted. [r=jlebar,bsmedberg]
|
2012-05-11 12:34:24 -07:00 |
|
Daniel Holbert
|
df204fac8a
|
Bug 727970: Check formerly-unused rv in TestProtocols.cpp, to fix build warning. r=jduell
|
2012-02-16 15:16:14 -08:00 |
|
Ehsan Akhgari
|
2a602a5685
|
Bug 690892 - Replace PR_TRUE/PR_FALSE with true/false on mozilla-central; rs=dbaron
Landing on a CLOSED TREE
|
2011-10-17 10:59:28 -04:00 |
|
Michael Wu
|
d8e503c38b
|
Bug 675553 - Switch from PRBool to bool on a CLOSED TREE , r=bsmedberg,khuey,bz,cjones
--HG--
rename : tools/trace-malloc/bloatblame.c => tools/trace-malloc/bloatblame.cpp
|
2011-09-28 23:19:26 -07:00 |
|
Ed Morley
|
af1d9c6c2b
|
Bug 661584 - Code cleanup, substitute more PR_(MAX|MIN|ABS|ROUNDUP) macro calls; r=roc,ted
|
2011-06-25 16:06:02 +02:00 |
|
Christian Biesinger
|
c93ab7d02c
|
Bug 576006 - Implement timing interface for channels
r=jduell sr=bz
|
2011-05-21 03:03:36 -07:00 |
|
Christian Biesinger
|
80d3f2f2bc
|
Unbreak android from cset acb6850ca38c / Bug 650429 - it doesn't have getpass.
|
2011-04-28 13:15:46 -07:00 |
|
Christian Biesinger
|
1f1bfe7e3e
|
Bug 650429 - Enable TestProtocols with libxul
r=bz
|
2011-04-28 11:30:30 -07:00 |
|
Ehsan Akhgari
|
73dd5db57d
|
Bug 646071 - Part 3: Remove nsInt64.h, and convert all uses of nsInt64 and nsUint64 in the tree to PRInt64 and PRUint64, respectively; r=bsmedberg
|
2011-03-31 20:15:27 -04:00 |
|
Ehsan Akhgari
|
49fceed112
|
Backout the latest cedar merge wholesale until I test the correctness of the merge locally. This commit takes the tree state back to changeset 8d3f6093c425 (the last known good changeset before the merge)
|
2011-04-01 12:23:48 -04:00 |
|
Ehsan Akhgari
|
f4575bfe5e
|
Bug 646071 - Part 3: Remove nsInt64.h, and convert all uses of nsInt64 and nsUint64 in the tree to PRInt64 and PRUint64, respectively; r=bsmedberg
|
2011-03-31 20:15:27 -04:00 |
|
Dan Witte
|
c4091d7694
|
Back out Bug 536324 part 3.
|
2010-08-30 13:20:39 -07:00 |
|
Dan Witte
|
5f4dbe5953
|
Bug 536324 - e10s HTTP: refactor nsHashPropertyBag. Part 3: contentLength consumers. r=jduell, a=beta5+
|
2010-08-21 00:31:35 -07:00 |
|
Bjarne
|
100caa546d
|
Bug 546606 - Make redirect API async - part 2; r=honzab.moz,cbiesinger,bjarne,jst sr=jst
|
2010-08-04 22:15:55 -04:00 |
|
Benjamin Smedberg
|
9961c9eb16
|
Bug 445853 - Add namespaces to various tests: these tests share a class name with other tests, which makes XPCOMGC rewriting very confused. r=biesi
|
2008-07-27 21:09:10 -04:00 |
|
hg@mozilla.com
|
465265d0d4
|
Free the (distributed) Lizard! Automatic merge from CVS: Module mozilla: tag HG_REPO_INITIAL_IMPORT at 22 Mar 2007 10:30 PDT,
|
2007-03-22 10:30:00 -07:00 |
|