Ben Turner
|
2e0265c8ef
|
Bug 784726 - 'Remove old IPC::URI'. r=cjones+khuey.
--HG--
rename : ipc/glue/IPCSerializableParams.ipdlh => ipc/glue/InputStreamParams.ipdlh
extra : transplant_source : %A6%BC%8B%8D%3A_%7Df%2B%FE%AA%94%81%AB%CAW%15K%A7%03
|
2012-08-23 12:33:46 -07:00 |
|
Ben Turner
|
4a96b44593
|
Bug 782649 - 'Remove old IPC::InputStream'. r=cjones+khuey.
|
2012-08-22 19:13:54 -07:00 |
|
Ryan VanderMeulen
|
e0f772c50e
|
Backout 41a3cdf92063 (bug 782649) for Linux xpcshell failures.
|
2012-08-22 17:31:06 -04:00 |
|
Ben Turner
|
09bda2927c
|
Bug 782649 - 'Remove old IPC::InputStream'. r=cjones+khuey.
|
2012-08-22 12:19:29 -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 |
|
Aryeh Gregor
|
982100775b
|
Bug 780618 - Move all error codes to nsError.h; r=ehsan
|
2012-07-27 17:03:27 +03:00 |
|
Honza Bambas
|
5fe7a22e2c
|
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 |
|
Jason Duell
|
8eb63ade2d
|
Bug 776174 - e10s: cleanup IPC nsILoader code. r=smaug, r=jdm
|
2012-08-06 21:47:48 -07:00 |
|
Mike Hommey
|
c1b35e7b2a
|
Bug 774032 bonus - Use @DEPTH@ and @relativesrcdir@ in Makefile.in. r=ted
|
2012-08-04 20:26:44 +02:00 |
|
Aryeh Gregor
|
57c0ad57fb
|
Bug 777292 part 2 - Change all nsnull to nullptr
|
2012-07-30 17:20:58 +03:00 |
|
Joshua Cranmer
|
e1cdfe2f05
|
Bug 773637 - Kill NS_SCRIPTABLE annotations, Part 1: Remove NS_*PARAM annotations. r=ehsan
--HG--
extra : rebase_source : a0b4bc50fece36d9a90fed61431635948bfa33b5
|
2012-07-06 15:14:07 -05:00 |
|
Jason Duell
|
c13b1fb788
|
Bug 776176 - e10s: propagate GetExtendedOrigin from child to parent process. r=jdm
|
2012-07-23 11:12:03 -07:00 |
|
Jason Duell
|
9230df40d8
|
Bug 775861 - e10s: propagate appId and isInBrowserElement from child to parent process r=jdm
|
2012-07-22 15:35:33 -07:00 |
|
Jason Duell
|
4cc41fe65d
|
Bug 775119 - e10s: implement nsILoadContext in ParentChannels, remove PrivateBrowsingConsumer r=jdm
|
2012-07-22 15:35:33 -07:00 |
|
Jason Duell
|
5d3acde245
|
Bug 773150 - FailDelayManager passing wrong type to MOZ_COUNT_CTR. r=mcmanus
|
2012-07-12 18:19:45 -07:00 |
|
Jason Duell
|
1a385bfff0
|
Bug 771318 - Fix early websocket Init fail. r=mcmanus, r=smaug
|
2012-07-09 18:20:25 -07:00 |
|
Jason Duell
|
9861cafc46
|
Bug 771318 - Code cleanup before actual fix. r=mcmanus
|
2012-07-09 18:20:21 -07:00 |
|
Jason Duell
|
2ed5e4c4d8
|
Bug 757738 - Websockets: release reference to nsIWebSocketListener after OnClose. r=mcmanus
|
2012-06-29 23:02:08 -07:00 |
|
Jason Duell
|
684d005df2
|
Bug 769529 - Update nsIWebSocket*.idl comments to reflect that we don't always call OnStart. r=mcmanus, sr=biesi
|
2012-06-29 22:59:49 -07:00 |
|
Jason Duell
|
f3ec1fa6b2
|
Bug 711793 - Delay websocket reconnection after abnormal termination. r=mcmanus
|
2012-06-28 17:53:50 -07:00 |
|
Jason Duell
|
5551fb531e
|
Bug 713023 - Websockets: don't prefer SOCKS to HTTP proxy until bug 449251 is fixed. r=biesi
|
2012-06-22 10:59:53 -07: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 |
|
Jason Duell
|
c80b1e6545
|
Bug 742614: Allocation of string is not checked in WebSockets text frame parsing. r=bsmith
|
2012-05-11 02:05:00 -07:00 |
|
Jason Duell
|
37f9287122
|
Bug 748766 - Only count connected websockets toward max-websocket limit. r=mcmanus
|
2012-05-31 16:41:24 -07:00 |
|
Gervase Markham
|
87620f5676
|
Bug 716478 - update licence to MPL 2.
|
2012-05-21 12:12:37 +01:00 |
|
Jason Duell
|
402969df1e
|
Bug 753105 - Change Websocket "internal error" code to 2011. r=mcmanus
|
2012-05-17 10:59:26 -07:00 |
|
Jason Duell
|
87a4ee092b
|
Bug 748580 - websockets: omit close code when none passed to close(). r=mcmanus
|
2012-05-17 10:56:56 -07:00 |
|
Patrick McManus
|
7f63c7e0c3
|
bug 738914 - orange websocket pipeline::isdone from main thread r=jduell
--HG--
extra : rebase_source : 206a38c1a8d9bac40bacb2e9556651d83406b115
|
2012-04-25 22:02:12 -04:00 |
|
Ms2ger
|
630bc4c173
|
Bug 605180 - Fix build warnings in netwerk/. r=jduell
|
2012-04-07 14:25:00 -07:00 |
|
Jason Duell
|
8b08960dc0
|
Bug 712191 - Clean up websocket close codes and abort logic. r?mcmanus
|
2012-04-11 13:20:00 -07:00 |
|
Jason Duell
|
b89ae61fae
|
Bug 696085: WebSocket connection opening across page loads r=smaug
|
2012-02-21 14:57:10 -08:00 |
|
Jason Duell
|
52f5d7e3db
|
Bug 701383: Websocket fails to delete mOutGoingMessage if closed multiple times. r=mcmanus
|
2012-01-31 20:41:47 -08:00 |
|
Jason Duell
|
cdc38d0c74
|
Bug 718557: Clean up DOM Websocket close logic. r=smaug
|
2012-01-31 20:41:43 -08:00 |
|
Patrick McManus
|
5c99dfec6b
|
bug 712572 part 2 r=jduell
|
2012-01-06 14:54:15 -05:00 |
|
Patrick McManus
|
83074c7f6e
|
bug 712572 part 1 r=jduell
|
2012-01-06 14:54:13 -05:00 |
|
Patrick McManus
|
134df57b77
|
bug 715284 WebSocketChannel.cpp compiler warning r=jduell
|
2012-01-04 18:19:15 -05:00 |
|
Jason Duell
|
289afd9b5c
|
Bug 711205: Limit websocket outbound msg size to PR_INT32_MAX. r=mcmanus
|
2011-12-20 00:20:12 -08:00 |
|
Jason Duell
|
a1f113cf0d
|
Bug 711205: Increase inbound WebSocket message size from 16MB to whatever malloc can handle. r=mcmanus
|
2011-12-20 00:20:12 -08:00 |
|
Jason Duell
|
58c42cf7a0
|
Bug 666349: update status code usage to latest spec. r=mcmanus
|
2011-12-20 00:20:12 -08:00 |
|
Jason Duell
|
a85844d280
|
Bug 666349 - Update WebSocket API to latest draft. r=mcmanus
|
2011-12-20 00:20:12 -08:00 |
|
Patrick McManus
|
687329f540
|
bug 664284: Add HSTS support for websockets. r=mcmanus
|
2011-12-15 15:23:00 -08:00 |
|
Jason Duell
|
1de341df68
|
Bug 676439 - Websocket Binary Message support: Necko changes. r=mcmanus
|
2011-12-15 15:20:17 -08:00 |
|
Jonathan Watt
|
71a67640b1
|
Bug 695303 - Add a mozilla::clamped function to replace NS_CLAMP (so side affects of args are evaluated no more than once) and NS_MIN(max, NS_MAX(val, min)) (to make code clearer). r=bsmedberg.
|
2011-10-28 19:33:28 +01:00 |
|
Wellington Fernando de Macedo
|
465a9d9676
|
Bug 664894. Eliminate nsWebSocketEstablishedConnection and fold code into nsWebSocket. r=jduell
|
2011-10-20 01:27:13 -07: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 |
|
Patrick McManus
|
f1c2b985a4
|
bug 687243 - websockets message len 0xffff does not use minimal length encoding r=jduell
|
2011-09-27 08:50:22 -04:00 |
|
Patrick McManus
|
c598a54eb0
|
bug 686312 - websockets should not reject non character utf-8 sequence as invalid r=dbaron
|
2011-09-20 18:13:43 -04:00 |
|
Patrick McManus
|
d812bf3a45
|
bug 679783 - websockets oninputstreamready() crash. r=jduell
|
2011-08-26 12:05:47 -07:00 |
|
Patrick McManus
|
1f488d8684
|
Bug 675983 - Websockets - fail connection on 1st fragment with a continuation op code
|
2011-08-08 23:41:22 -07:00 |
|