Nicholas Nethercote
|
40ab0270d5
|
Bug 1127201 (part 2) - Convert all NS_ABORT_IF_FALSE calls to MOZ_ASSERT. r=Waldo.
|
2015-02-04 20:05:36 -08:00 |
|
Mike Hommey
|
715db83e04
|
Bug 1126593 - Add a global fallible instance, so that using fallible works directly, everywhere. r=njn
|
2015-02-02 09:56:13 +09:00 |
|
Patrick McManus
|
c870cb3fa4
|
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 |
|
Ms2ger
|
2c36b38c93
|
Bug 914067 - Remove JSVAL_VOID from dom/; r=jst
|
2015-01-14 08:59:06 +01:00 |
|
Tillmann Karras
|
a9dd935230
|
Bug 707484 - Allow setting XHR.responseType before open(); r=smaug
|
2015-01-13 09:51:09 +01:00 |
|
Ben Kelly
|
78d47b3a1c
|
Bug 1118443 Make workers specify the XHR load group to use during the request. r=sicking
|
2015-01-08 11:21:52 -05:00 |
|
Ehsan Akhgari
|
2acefe2331
|
Bug 1117264 - Mark virtual overridden functions as MOZ_OVERRIDE in dom/base code; r=baku
|
2015-01-06 11:52:45 -05:00 |
|
Christoph Kerschbaumer
|
11a5d113f3
|
Bug 1116624 - Move CORS into dom/security (r=sicking)
|
2014-12-30 15:54:59 -08:00 |
|
Patrick McManus
|
ad2b489529
|
bug 1003450 - [2/3] Group Dependency nodes for HTTP/2 r=hurley
|
2014-12-06 14:26:50 -05:00 |
|
Jeremy Chen
|
c1e64d806b
|
Bug 1109486 - Unconditionally use UTF-8 as default Charset. r=smaug
|
2014-12-18 16:50:34 +08:00 |
|
Boris Zbarsky
|
f39142404c
|
Bug 966385 followup to make the review comment code actually compile.
|
2014-12-01 15:27:19 -05:00 |
|
Boris Zbarsky
|
84828981ca
|
Bug 966385. Stop using the deprecated GetInputEncoding in XHR code. r=peterv
|
2014-12-01 15:17:49 -05:00 |
|
Boris Zbarsky
|
ffbd31df6a
|
Bug 1087851 part 1. Rename WrapNewBindingObject to GetOrCreateDOMReflector to make it clearer what it does. r=peterv for the idea; patch itself is just search-and-replace
|
2014-11-26 14:25:20 -05:00 |
|
Sid Stamm
|
c5bbe23659
|
Bug 704320 - content/dom changes for meta referrer support. (r=jst)
This enables referrer policies for:
- EventSource (content/base/src/EventSource)
- XMLHttpRequest (content/base/src/nsXMLHttpRequest)
- HTML media elements (content/html/content/src/HTMLMediaElement)
- window.open (embedding/components/windowwatcher)
- window.location (dom/base/nsLocation)
|
2014-11-18 08:47:03 -05:00 |
|
Andrew McCreight
|
18f3646c9e
|
Bug 1030667 - Don't pass 0 to realloc in ArrayBufferBuilder::setCapacity. r=sfink
|
2014-11-11 17:47:14 -05:00 |
|
Birunthan Mohanathas
|
e9068bbc4f
|
Bug 946065 - Part 12: Move content/base/ to dom/ and flatten subdirectories. r=peterv
|
2014-10-25 20:25:22 +03:00 |
|