summaryrefslogtreecommitdiffstats
path: root/net/socket/tcp_client_socket_pool.cc
Commit message (Collapse)AuthorAgeFilesLines
* Revert "net: networking optimizations"Ricardo Cerqueira2012-11-191-5/+2
| | | | This reverts commit 5fbe95affc8eeed93c678b1d271f64dcc4dd919b.
* net: networking optimizationsEbrahem Qassem2012-09-111-2/+5
| | | | | | | | | | | | | | | features: - early connection - memory cache - caching of redirection - request queue priority - closing unused sockets - SHUTR - fin aggregation - object prefetch - dns host name prioritization Change-Id: Ief90b8206ba48115eaeb12d554424d65f36427ac
* Network traffic accounting for client applications that use chromiumAshish Sharma2011-08-091-3/+30
| | | | | | URLRequest stack. Change-Id: If7821debd1b10b19ebf5a3e7b9f6570efc73c4fc
* Merge Chromium.org at r11.0.672.0: Initial merge by git.Kristian Monsen2011-06-141-6/+6
| | | | Change-Id: I8b4aaf611a2a405fe3fe10e8a94ea7658645c192
* Merge Chromium at 10.0.621.0: Initial merge by git.Kristian Monsen2011-05-161-0/+31
| | | | Change-Id: I070cc91c608dfa4a968a5a54c173260765ac8097
* Fix for bug 3491968 Browser frozen on dunkindonuts.comKristian Monsen2011-03-111-1/+5
| | | | | | | | | | If a sync request returns ERR_IO_PENDING it will block and never complete. Waiting for connect() to complete with select(). If it doesn't complete within 20 seconds, return an error. Change-Id: Ie5859b482dd64248036c2ad9ef57e63d468db2d4
* Chromium part of fix for bug 3491968 Browser frozen on dunkindonuts.comKristian Monsen2011-03-091-3/+11
| | | | | | | | Letting sync requests create sockets even if the total number of sockets has reached max or the number of sockets in the group is full. Change-Id: Id6f4e0015af67d1b4124f00106433b1977995f45
* Merge Chromium at r65505: Initial merge by git.Ben Murdoch2010-11-181-4/+4
| | | | Change-Id: I31d8f1d8cd33caaf7f47ffa7350aef42d5fbdb45
* Merge Chromium at r63472 : Initial merge by git.Iain Merrick2010-11-031-1/+22
| | | | Change-Id: Ifb9ee821af006a5f2211e81471be93ae440a1f5a
* Syncing external/chromium with chromium release 61029, part 4Kristian Monsen2010-10-221-2/+0
| | | | | | | Removing code that is not needed anymore as the compile errors have been fixed in more general ways. Change-Id: I483d7b4a474db030cb10e446692326f739679fff
* Merge Chromium at 7.0.540.0 : Initial merge by gitIain Merrick2010-10-191-24/+22
| | | | | | Not including third_party/icu as it contains huge data files that break Gerrit, and aren't actually used. Change-Id: I428a386e70f3b58cacd28677b8cfda282e891e15
* Collection of all the changs to external chromium.Ben Murdoch2010-08-111-0/+2
| | | | | | | | Time is running out, I guess we have to submit this and remember to upstream. Rebased to chromium r53293 Change-Id: Ie61ca0433b1eedd90144aee87c5efcd68fdc37ac
* Merge Chromium src@r53293Ben Murdoch2010-08-041-37/+72
| | | | Change-Id: Ia79acf8670f385cee48c45b0a75371d8e950af34
* Initial source checkin.Patrick Scott2010-02-041-0/+231
The source files were determined by building net_unittests in chromium's source tree. Some of the obvious libraries were left out (v8, gmock, gtest). The Android.mk file has all the sources (minus unittests and tools) that were used during net_unittests compilation. Nothing builds yet because of STL but that is the next task. The .cpp files will most likely not compile anyways because of the LOCAL_CPP_EXTENSION mod. I will have to break this into multiple projects to get around that limitation.