Dragana Damjanovic
c5b8ba0969
Bug 1152046 - Make separate thread only for PRClose. r=mcmanus r=mayhemer
2015-09-10 19:07:00 +02:00
Nicholas Hurley
75ab040180
Bug 1152048 - Send wakeup notification asynchronously to avoid reentrancy issues. r=bagder
2015-07-31 13:39:48 -07:00
Jessica Jong
0fdefc07fa
Bug 1167132 - Part 13: [NetworkManager] Move network information into a separate interface (Necko/NetStats). r=ethan
2015-07-29 02:14:00 -04:00
Bobby Holley
c628203bb4
Bug 1186152 - Implement nsIProtocolHandlerWithDynamicFlags and use it for moz-extension. r=bz
2015-07-28 12:26:51 -07:00
Franziskus Kiefer
07c4ad95f7
Bug 1174913 - anchor and area referrer attributes. r=ckerschb, r=bz
2015-06-05 15:25:24 -07:00
Valentin Gosu
6838dbecd3
Bug 1182515 - Clear reference to captive portal service when observing xpcom-shutdown. r=mcmanus
2015-07-13 15:50:58 +02:00
Birunthan Mohanathas
a29151dc87
Bug 1182996 - Fix and add missing namespace comments. rs=ehsan
...
The bulk of this commit was generated by running:
run-clang-tidy.py \
-checks='-*,llvm-namespace-comment' \
-header-filter=^/.../mozilla-central/.* \
-fix
2015-07-13 08:25:42 -07:00
Valentin Gosu
ea10616017
Bug 1179779 - Neither XRE_START_OFFLINE nor -offline work any more. r=mayhemer
2015-07-08 15:56:12 +02:00
Dragana Damjanovic
6f4f66637f
Bug 1152046 - add telemetry for time spent in connect/close. r=mayhemer
2015-07-07 11:13:00 +02:00
Dragana Damjanovic
f5e3e71a6d
Bug 905127 - Part 2 - remove unnecessary nsNetUtil.h includes r=jduell
2015-07-06 07:55:00 +02:00
Juan Gomez
89035d527e
Bug 1171931 - Refactor duplicated code using XRE_IsParent/ContentProcess. r=froydnj
2015-07-03 18:29:00 -07:00
Valentin Gosu
266cd764c0
Bug 1048131 - Make some network events trigger a captive portal recheck r=mcmanus
2014-10-14 00:35:51 +03:00
Carsten "Tomcat" Book
097d90283b
Backed out changeset 49f72333b407 (bug 1048131)
2015-07-03 14:25:56 +02:00
Valentin Gosu
0054b891e7
Bug 1048131 - Make some network events trigger a captive portal recheck r=mcmanus
2014-10-14 00:35:51 +03:00
Ryan VanderMeulen
7aba9d7002
Backed out changeset 8b4e4083639e (bug 1171931) for B2G debug emulator bustage.
2015-06-25 19:48:42 -04:00
Juan Gomez
7323e89a40
Bug 1171931 - Refactor duplicated code using XRE_IsParent/ContentProcess. r=froydnj
2015-06-24 14:11:00 -04:00
Christoph Kerschbaumer
9ebe69099b
Bug 1120487 - Implement shim before moving security checks into AsyncOpen, ioservice changes (r=sicking,sworkman)
2015-05-29 10:41:41 -07:00
Christoph Kerschbaumer
9ea833fd29
Bug 1162657 - Turn NewChannel deprecation warnings into assertions (r=sworkman,sicking,paolo)
2015-05-13 17:58:52 -07:00
Patrick McManus
44eeaf149e
Bug 1162243 - add anonymous speculative connections r=hurley
2015-05-05 21:15:36 -04:00
Valentin Gosu
d42158b48a
Bug 1134596 - SetOffline(false) in nsIOService::Init r=honzab
2015-04-03 16:23:18 +03:00
Valentin Gosu
41aa664b25
Bug 1134596 - Add network.offline-mirrors-connectivity pref to preserve previous behaviour r=honzab
2015-03-26 13:19:47 +02:00
Valentin Gosu
8ed5beb8b6
Bug 1134596 - Separate nsIOService's network detection from offlineMode r=honzab
2015-05-02 00:14:39 +03:00
Christoph Kerschbaumer
d5d460d66c
Bug 1134096 - Revise docs for ::NewChannel2, ::GetChannelPrincipal and add deprecation warnings (r=tanvi,sicking)
2015-04-13 13:37:14 -07:00
Carsten "Tomcat" Book
6e5babb188
Backed out changeset 35e6bbc2136b (bug 1134596) for Android Crashtest failures
2015-04-09 12:33:41 +02:00
Carsten "Tomcat" Book
9310144839
Backed out changeset 82d6b5523a2b (bug 1134596)
2015-04-09 12:31:51 +02:00
Carsten "Tomcat" Book
d8e4b48fdf
Backed out changeset fb48ee62bab4 (bug 1134596)
2015-04-09 12:31:49 +02:00
Valentin Gosu
e9afff6cfa
Bug 1134596 - SetOffline(false) in nsIOService::Init r=honzab
2015-04-09 06:33:08 +03:00
Valentin Gosu
b4db404b83
Bug 1134596 - Add network.offline-mirrors-connectivity pref to preserve previous behaviour r=honzab
2015-04-09 06:33:03 +03:00
Valentin Gosu
49f6c78afe
Bug 1134596 - Separate nsIOService's network detection from offlineMode r=honzab
2015-04-09 06:32:53 +03:00
Ehsan Akhgari
ea41d8de48
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
Christoph Kerschbaumer
cd9e41c663
Bug 1144270 : Update remaining callers of newChannel to newChannel2 in netwerk/ (r=mcmanus)
2015-03-20 12:27:34 -07:00
Patrick McManus
7aaee768e1
bug 1135160 - ioservice have speculative connect use proxy-resolve2() r=hurley
2015-03-13 17:32:18 -04:00
Daniel Stenberg
20c6d19586
Bug 1142586 - avoid asking the link service for online status on CHANGED. r=valentin
2015-03-12 09:46:00 +01:00
Alex Henrie
b5cea2d6c5
Bug 1134537 - Only support GIO in nsIOService. r=mcmanus
2015-03-06 22:06:34 -07:00
Valentin Gosu
3257e5d8ca
Bug 1132693 - Add back check for mManageOfflineStatus r=jduell
2015-02-20 17:10:33 +02:00
Valentin Gosu
b987374c90
Bug 1132693 - navigator.onLine detection not working on Android r=mcmanus
2015-02-16 19:25:40 +02:00
Valentin Gosu
4162630975
Bug 1120216 - Add telemetry for how often URLs contain !/ or !// or end with a ! r=mcmanus
2015-02-06 15:27:33 +02:00
Arthur Edelstein
a68e31a789
Bug 436344 - Allow filtering of proxies by channel. r=mcmanus
2015-01-21 21:13:00 +01:00
James Kitchener
f3e2ed9bfd
Bug 1100184 - Flatten netwerk/base/{public,src}/ directories. r=mcmanus, r=poiru
2015-01-20 03:58:00 -05:00