Mike Hommey
|
ee117642af
|
Bug 1134920 - Use moz_xmalloc/moz_xrealloc/free instead of nsMemory::Alloc/Realloc/Free. r=nfroyd
|
2015-04-01 13:51:45 +09:00 |
|
Andrea Marchesini
|
94545cbb2e
|
Bug 1148527 - Indentation fix after bug 1145631, r=ehsan
|
2015-03-27 18:52:19 +00:00 |
|
Trevor Saunders
|
473f2ceb3c
|
bug 1146027 - more final r=froydnj
|
2015-03-24 17:51:43 -04:00 |
|
Ehsan Akhgari
|
5cccea6f0f
|
Bug 1145631 - Part 1: Replace MOZ_OVERRIDE and MOZ_FINAL with override and final in the tree; r=froydnj
This patch was automatically generated using the following script:
function convert() {
echo "Converting $1 to $2..."
find . \
! -wholename "*/.git*" \
! -wholename "obj-ff-dbg*" \
-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 MOZ_OVERRIDE override
convert MOZ_FINAL final
|
2015-03-21 12:28:04 -04:00 |
|
Dragana Damjanovic
|
d169a2f322
|
Bug 918827 - Remove caching for ftp connections. r=michal
|
2015-03-02 14:31:53 -08:00 |
|
Christoph Kerschbaumer
|
4981e1ea79
|
Bug 1099296 - Attach LoadInfo to remaining callers of ioService and ProtocolHandlers - in netwerk/ (r=sworkman)
|
2015-02-17 10:09:31 -08:00 |
|
Ryan VanderMeulen
|
256333e4b8
|
Merge inbound to m-c. a=merge
CLOSED TREE
|
2015-02-10 16:03:15 -05:00 |
|
Ethan Tseng
|
c894cd0526
|
Bug 1070944 - Part 2: Implementation of saving statistics. r=albert
|
2015-01-27 17:15:44 +08:00 |
|
Nicholas Nethercote
|
ee41df7dc2
|
Bug 1127201 (attempt 2, part 1) - Replace most NS_ABORT_IF_FALSE calls with MOZ_ASSERT. r=Waldo.
|
2015-02-09 14:34:50 -08:00 |
|
Andrew McCreight
|
1ee96e7527
|
Back out Bug 1127201 (part 2) for various problems.
|
2015-02-06 15:04:32 -08:00 |
|
Nicholas Nethercote
|
0a02b5d31c
|
Bug 1127201 (part 2) - Convert all NS_ABORT_IF_FALSE calls to MOZ_ASSERT. r=Waldo.
|
2015-02-04 20:05:36 -08:00 |
|
Gijs Kruitbosch
|
13587e096a
|
Bug 1125372 - use nsISupports as first param of asyncResolve instead of switching wholesale from nsIURI to nsIChannel, for improved add-on compat, r=mcmanus
|
2015-01-27 21:30:49 +00:00 |
|
Arthur Edelstein
|
df009957a0
|
Bug 436344 - Allow filtering of proxies by channel. r=mcmanus
|
2015-01-21 21:13:00 +01:00 |
|
James Kitchener
|
0463ec8f7b
|
Bug 1100184 - Use absolute paths in /network local includes. r=gps
|
2015-01-16 20:41:06 +10:30 |
|
James Kitchener
|
6a912052bb
|
Bug 1100184 - Flatten netwerk/base/{public,src}/ directories. r=mcmanus, r=poiru
|
2015-01-20 03:58:00 -05:00 |
|
Patrick McManus
|
fdaefb68d6
|
bug 1116867 - make nsIProgressEventSink and nsITransportEventSink safely scriptable r=mayhemer r=bz
These scriptable interfaces use uint_64 arguments with sentinel values
of UINT64_MAX. However, UINT64_MAX exceeds MAX_SAFE_INTEGER and cannot
be gatewayed to/from javascript - so they cannot be used
correctly. Change them to use signed 64 bit numbers and -1 as the
sentinnel. C++ implementations ought to be enough to audit as the
special value could never be used correctly in JS anyhow - also
audited OnProgressChange() uses for downstream use of this data.
---
dom/base/nsXMLHttpRequest.cpp | 19 +++++++----
dom/base/nsXMLHttpRequest.h | 10 +++---
dom/plugins/base/nsPluginStreamListenerPeer.cpp | 4 +--
.../webbrowserpersist/nsWebBrowserPersist.cpp | 14 ++++----
image/src/imgLoader.cpp | 4 +--
modules/libjar/nsJARChannel.cpp | 3 +-
netwerk/base/public/nsIProgressEventSink.idl | 8 ++---
netwerk/base/public/nsITransport.idl | 8 ++---
netwerk/base/public/nsNetUtil.h | 24 ++++++++++++++
netwerk/base/src/Dashboard.cpp | 2 +-
netwerk/base/src/nsBaseChannel.cpp | 12 +++----
netwerk/base/src/nsIncrementalDownload.cpp | 4 +--
netwerk/base/src/nsSocketTransport2.cpp | 5 +--
netwerk/base/src/nsStreamTransportService.cpp | 38 +++++++++++++---------
netwerk/base/src/nsTransportUtils.cpp | 12 +++----
netwerk/protocol/file/nsFileChannel.cpp | 8 +++--
netwerk/protocol/ftp/nsFtpConnectionThread.cpp | 4 +--
netwerk/protocol/http/Http2Push.cpp | 2 +-
netwerk/protocol/http/Http2Session.cpp | 2 +-
netwerk/protocol/http/HttpChannelChild.cpp | 31 +++++++++---------
netwerk/protocol/http/HttpChannelChild.h | 6 ++--
netwerk/protocol/http/HttpChannelParent.cpp | 4 +--
netwerk/protocol/http/HttpChannelParent.h | 4 +--
netwerk/protocol/http/NullHttpTransaction.cpp | 2 +-
netwerk/protocol/http/PHttpChannel.ipdl | 2 +-
netwerk/protocol/http/SpdyPush31.cpp | 2 +-
netwerk/protocol/http/SpdySession31.cpp | 2 +-
netwerk/protocol/http/TunnelUtils.cpp | 2 +-
netwerk/protocol/http/nsAHttpTransaction.h | 4 +--
netwerk/protocol/http/nsHttpChannel.cpp | 30 +++++++++++------
netwerk/protocol/http/nsHttpConnection.cpp | 4 +--
netwerk/protocol/http/nsHttpConnectionMgr.cpp | 4 +--
netwerk/protocol/http/nsHttpPipeline.cpp | 4 +--
netwerk/protocol/http/nsHttpPipeline.h | 6 ++--
netwerk/protocol/http/nsHttpResponseHead.cpp | 2 +-
netwerk/protocol/http/nsHttpResponseHead.h | 2 +-
netwerk/protocol/http/nsHttpTransaction.cpp | 32 +++++++++---------
netwerk/protocol/http/nsHttpTransaction.h | 2 +-
netwerk/protocol/wyciwyg/WyciwygChannelChild.cpp | 2 +-
netwerk/protocol/wyciwyg/nsWyciwygChannel.cpp | 3 +-
netwerk/test/TestIncrementalDownload.cpp | 7 ++--
uriloader/base/nsDocLoader.cpp | 14 ++++----
42 files changed, 203 insertions(+), 151 deletions(-)
|
2015-01-08 14:48:52 -05:00 |
|
Dragana Damjanovic
|
9fa1d23668
|
Bug 1112112 - Adding logging for e10s channel. r=jduell
|
2015-01-08 06:27:00 +01:00 |
|
Christoph Kerschbaumer
|
8c0ee40abf
|
Bug 1107638 - Add innerWindowID to LoadInfo (r=sicking,jduell)
|
2015-01-07 15:51:20 -08:00 |
|
Ehsan Akhgari
|
897c4949cc
|
Bug 1117042 - Mark virtual overridden functions as MOZ_OVERRIDE in netwerk; r=mcmanus
|
2015-01-02 09:04:04 -05:00 |
|
Christoph Kerschbaumer
|
c5658b66eb
|
Bug 1087442 - Attach LoadInfo inside each individual ProtocolHandler - netwerk/ changes (r=sworkman,sicking)
|
2014-12-12 09:07:36 -08:00 |
|
Phil Ringnalda
|
e725b6fdc2
|
Backed out 15 changesets (bug 1087442)
Backed out changeset 3f4166fb5e37 (bug 1087442)
Backed out changeset 0c9c9123a0a9 (bug 1087442)
Backed out changeset 1d85d298042d (bug 1087442)
Backed out changeset 51f3ce397d68 (bug 1087442)
Backed out changeset f3b81a623692 (bug 1087442)
Backed out changeset 472e8fa74596 (bug 1087442)
Backed out changeset 12f97df7b79c (bug 1087442)
Backed out changeset 253cde88d3c5 (bug 1087442)
Backed out changeset b44f9ebd56cb (bug 1087442)
Backed out changeset 48e412887726 (bug 1087442)
Backed out changeset a2c76343f7a9 (bug 1087442)
Backed out changeset 0b5b07cfef0e (bug 1087442)
Backed out changeset 2931c35342a4 (bug 1087442)
Backed out changeset 681ce9dcad64 (bug 1087442)
Backed out changeset 47c505856954 (bug 1087442)
|
2014-12-11 21:58:21 -08:00 |
|
Christoph Kerschbaumer
|
7d8deee972
|
Bug 1087442 - Attach LoadInfo inside each individual ProtocolHandler - netwerk/ changes (r=sworkman,sicking)
|
2014-12-11 20:46:47 -08:00 |
|
Trevor Saunders
|
dfe4aecd6f
|
bug 1105074 - make more stuff final r=froydnj
|
2014-11-25 13:56:07 -05:00 |
|
Christoph Kerschbaumer
|
15c52320f8
|
Bug 1083422 - Add triggering Principal to nsILoadInfo - e10s changes (r=jduell)
* * *
[mq]: tmp
|
2014-11-14 08:57:09 -08:00 |
|
Blake Kaplan
|
4a8b4fc6e5
|
Bug 1088457 - Make nsChannelClassifier deal properly with e10s. r=mmc/sworkman
|
2014-11-11 15:05:55 -08:00 |
|
Christoph Kerschbaumer
|
b71c277de5
|
Bug 1067471 - Add newChannel2 to nsIProtocolHandler that takes a loadinfo as an argument (r=sicking)
|
2014-10-22 17:16:57 -07:00 |
|
Christoph Kerschbaumer
|
897fd1befa
|
Bug 1041180: Remove deprecated nsIChannelPolicy (r=sstamm,jduell,jst)
|
2014-10-15 19:11:45 -07:00 |
|
Valentin Gosu
|
31e0b73e25
|
Bug 786419 - Part 2 - Modify calls to NS_IsOffline to check for NS_IsAppOffline as well r=jduell,sicking
|
2014-08-23 06:06:56 +03:00 |
|
Valentin Gosu
|
603e565aec
|
Bug 786419 - Part 1 - Provide way to "set network offline" per app r=jduell
|
2014-08-23 06:05:56 +03:00 |
|
Christoph Kerschbaumer
|
10634fc508
|
Bug 1038756: Callsites creating a channel in /netwerk/ [e10s parts] (r=mcmanus)
|
2014-09-21 09:40:27 -07:00 |
|
Julian Seward
|
d8ffb7f559
|
Bug 1065130 - nsFtpState::mDoomCache is used uninitialised r=jduell
|
2014-09-19 13:12:10 -07:00 |
|
Carsten "Tomcat" Book
|
3a3f4e2276
|
Backed out changeset 824da93333e7 (bug 1065130) for bustage
|
2014-09-19 09:41:34 +02:00 |
|
Julian Seward
|
0592ae0c01
|
Bug 1065130 - "nsFtpState::mDoomCache is used uninitialised". r=jduell.mcbugs
|
2014-09-09 14:54:00 +02:00 |
|
Wes Kocher
|
13400b0b51
|
Backed out changeset 1ed271ffb59c (bug 786419) bug causing bug 786419 a=backout
|
2014-08-26 16:34:46 -07:00 |
|
Valentin Gosu
|
88cded52b3
|
Bug 786419 - Provide way to "set network offline" per app r=jduell
|
2014-08-23 06:05:56 +03:00 |
|
Ehsan Akhgari
|
4386d2f7fc
|
Bug 1047782 - Fix some bad impliciit constructors in netwerk/; r=mcmanus
|
2014-08-05 09:20:50 -04:00 |
|
Ehsan Akhgari
|
9745a79694
|
Bug 1048271 - Fix more bad implicit constructors in netwerk; r=mcmanus
|
2014-08-05 09:20:24 -04:00 |
|
Mike Hommey
|
9ae3c48776
|
Bug 1041860 - Avoid setting FINAL_LIBRARY to libraries that further use a FINAL_LIBRARY. r=mshal
|
2014-07-23 08:37:51 +09:00 |
|
Benoit Girard
|
cb397e6eb5
|
Bug 1037691 - Fix instances where refcounted classes expose a public destructor. r=ehsan,bent,mayhemer,jrmuizel
|
2014-07-15 11:37:45 -04:00 |
|
Dragana Damjanovic
|
f30a054136
|
Bug 915024 - Add ForcePending for HttpChannel. r=jduell
|
2014-07-10 10:13:00 -04:00 |
|
Benoit Jacob
|
c517b3dd2b
|
Bug 1035394 - Fix dangerous public destructors in netwerk - r=mcmanus
|
2014-07-08 17:23:18 -04:00 |
|
Benoit Jacob
|
d51ba204fb
|
Bug 1028588 - Fix dangerous public destructors in netwerk/ - r=mcmanus
|
2014-06-24 12:36:44 -04:00 |
|
Kyle Huey
|
bfc2b819ab
|
Bug 1024898: Allow (most) nsBaseChannel subclasses to retarget OnDataAvailable to other threads. r=jduell,sworkman
|
2014-06-17 09:39:26 -07:00 |
|
Kyle Huey
|
941a5ee91b
|
Bug 996133: Remove unnecessary NS_DISPATCH_NORMAL arguments to NS_DispatchToMainThread. r=ehsan
|
2014-05-23 12:53:17 -07:00 |
|
Birunthan Mohanathas
|
504b581650
|
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 |
|
Makoto Kato
|
b139111eee
|
Bug 26767 - FTP client detects UTF-8 if server returns UTF8 on FEAT. r=michal.novotny
|
2014-04-23 01:12:58 +09:00 |
|
John Shih
|
80ae34ca1f
|
Bug 949956 - Move duplicated code to NetStatistics.h. r=mcmanus
|
2014-01-14 17:55:29 +08:00 |
|
Steve Workman
|
68b4073e57
|
Bug 990268 - Send FTPChannelParent::mStatus in IPDL messages to FTPChannelChild r=mayhemer
|
2014-04-07 11:26:22 -07:00 |
|
Steve Workman
|
78bbb16252
|
Bug 983910 - Set mParentListener for HttpChannelParent objects created after HTTP redirects
|
2014-03-27 13:11:50 -07:00 |
|
Ms2ger
|
b765dd44d3
|
Bug 984006 - Remove xpcom/ds from local includes; r=ehsan
|
2014-03-27 21:05:14 +01:00 |
|