Ehsan Akhgari
|
7943855e34
|
Bug 1117042 - Mark virtual overridden functions as MOZ_OVERRIDE in netwerk; r=mcmanus
|
2015-01-02 09:04:04 -05:00 |
|
Christoph Kerschbaumer
|
97dc2db877
|
Bug 1038756: Callsites creating a channel in /netwerk/ (r=mcmanus)
* * *
[mq]: child_parent_communication.patch
|
2014-09-21 09:40:12 -07:00 |
|
Steve Workman
|
4517f4bb56
|
Bug 1036056 - Remove dangerous public destructor of nsFileUploadContentStream r=mcmanus
|
2014-07-09 11:02:06 -07:00 |
|
Benoit Jacob
|
2d0bd3113e
|
Bug 1035394 - Fix dangerous public destructors in netwerk - r=mcmanus
|
2014-07-08 17:23:18 -04:00 |
|
Birunthan Mohanathas
|
eeb9aaaa94
|
Bug 900908 - Part 3: Change uses of numbered macros in nsIClassInfoImpl.h/nsISupportsImpl.h to the variadic variants. r=froydnj
|
2014-04-27 03:06:00 -04:00 |
|
Steve Workman
|
3513d30f78
|
Bug 975338 - Enable diverting of HTTP and FTP channels back to parent process from child r=jduell
|
2014-03-10 23:04:28 +01:00 |
|
Ed Morley
|
5c33adaaa7
|
Backed out changeset 7a78f199e1cd (bug 975338)
|
2014-03-10 17:57:46 +00:00 |
|
Steve Workman
|
63648446b2
|
Bug 975338 - Implement nsI|ADivertableChannel in FTPChannelChild|Parent r=jduell
|
2014-03-10 18:31:57 +01:00 |
|
Ehsan Akhgari
|
deb5a6a21b
|
Bug 919320 - Minimize the #includes in netwerk/protocol; r=mcmanus
|
2013-09-22 23:35:52 -04:00 |
|
Mats Palmgren
|
7532b4e736
|
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 |
|
Oonishi Atsushi
|
02a6174395
|
Bug 282432 - Calling asyncOpen on a file channel should notify about file not found errors asynchronously instead of throwing from asyncOpen. r=bz
|
2012-11-01 19:23:13 -04:00 |
|
Ehsan Akhgari
|
e91c80d60b
|
Backed out 2 changesets (bug 579517)
Backed out changeset 5298adc70963
Backed out changeset 86ccf7c918ce (bug 579517)
|
2012-10-25 12:32:24 -04:00 |
|
Ehsan Akhgari
|
d766300da5
|
Code hygiene: don't use PR_TRUE and PR_FALSE, and use stdint types instead of PRInt types (no bug really, but you could say bug 579517)
|
2012-10-25 11:48:19 -04:00 |
|
Nick Hurley
|
0f1168cbdd
|
Bug 536324 part 3 - Change consumers of nsIChannel. r=sworkman
|
2012-10-22 10:51:07 -07:00 |
|
Isaac Aggrey
|
990e90e88a
|
Bug 791906: Replace NSPR integer limit constants with stdint ones; r=ehsan
|
2012-09-28 01:57:33 -05:00 |
|
Makoto Kato
|
553a94e2e1
|
Bug 790617 - Part 1 - setUploadStream can handle 64-bit length r=cbiesinger
|
2012-09-19 17:09:08 +09:00 |
|
Randell Jesup
|
3b4961b603
|
Bug 773151: Convert nsCAutoString->nsAutoCString CLOSED TREE r=bsmedberg
|
2012-09-01 22:35:17 -04:00 |
|
Ehsan Akhgari
|
243c878d26
|
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 |
|
Honza Bambas
|
473edc0cbf
|
Bug 215450: Allow uploading of files greater than 2gb in size. Involves making input streams 64-bit capable. Significant work done by Makoto Kato, finished by Honza Bambas. r=hbambas,bsmedberg,jdrew,sicking
|
2012-08-10 22:44:11 -04:00 |
|
Aryeh Gregor
|
cb8c7eb3ef
|
Bug 778680 part 1 - Make netwerk status codes actually nsresult; r=jduell
|
2012-08-01 11:17:09 +03:00 |
|
Aryeh Gregor
|
8b4a23fc4c
|
Bug 777292 part 2 - Change all nsnull to nullptr
|
2012-07-30 17:20:58 +03:00 |
|
Geoff Lankow
|
7a64448b03
|
Bug 749930 - Replace uses of nsILocalFile with nsIFile (compiled code only); r=bsmedberg
|
2012-06-06 14:08:30 +12:00 |
|
Gervase Markham
|
cb6a072c2a
|
Bug 716478 - update licence to MPL 2.
|
2012-05-21 12:12:37 +01:00 |
|
Ryan VanderMeulen
|
2d4210b24e
|
Backout ff1f86491512:29e94992504b due to orange.
|
2012-05-09 20:02:40 -04:00 |
|
Oonishi Atsushi
|
7a4f387442
|
Bug 282432 - Calling asyncOpen on a file channel should notify about file not found errors asynchronously instead of throwing from asyncOpen. r=bz
|
2012-05-09 18:46:12 -04:00 |
|
Brian R. Bondy
|
8e6a9a754f
|
Bug 670514 - Arbitrary File + Directory read via .lnk files on Windows Share. r=bz
|
2012-05-03 15:23:28 -04:00 |
|
Alex Vincent
|
f3ba2926fc
|
Bug 698249 - Unnecessary nsresult rv declaration in nsFileChannel::OpenContentStream. r=bz
|
2011-10-30 15:47:51 +01:00 |
|
Ehsan Akhgari
|
478ad1a412
|
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
|
0fe7772ece
|
Bug 675553 - Switch from PRBool to bool on a CLOSED TREE , r=bsmedberg,khuey,bz,cjones
|
2011-09-28 23:19:26 -07:00 |
|
Dominic Fandrey
|
532ec73933
|
Bug 645398 - Substitute PR_(MAX|MIN|ABS|ROUNDUP) macro calls; r=roc
|
2011-06-02 14:56:50 +02:00 |
|
Dan Witte
|
30593559ea
|
Back out Bug 536324 part 3.
|
2010-08-30 13:20:39 -07:00 |
|
Dan Witte
|
282953ea05
|
Bug 536324 - e10s HTTP: refactor nsHashPropertyBag. Part 3: contentLength consumers. r=jduell, a=beta5+
|
2010-08-21 00:31:35 -07:00 |
|
Mitchell Field
|
bc63774d7e
|
Bug 542222 - Reduce recursion in netwerk makefiles.
|
2010-06-05 21:18:12 -04:00 |
|