|
Add a force pipelining option to load flags.
Details:
- Add a HttpPipelinedHostForced class for connections with forced requests.
+ Forced requests get their own pipeline and there's only one per host.
+ They always try to pipeline and won't retry if evicted.
+ Only one HttpStreamFactoryImpl::Job runs for all requests to the same
origin with forced pipelining. All requests will fail if that Job fails.
- Track HttpPipelinedHosts with a Key. Right now that's origin and
force-pipelining, but it might be expanded to include content type.
- Add a BufferedWriteStreamSocket that wraps a normal socket. It buffers Write()
calls until a task fires to dispatch the buffer to the underlying socket.
BUG= 110794
TEST=net_unittests and unit_tests
Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=124487
Total comments: 36
Total comments: 17
Total comments: 2
Total comments: 8
|
Unified diffs |
Side-by-side diffs |
Delta from patch set |
Stats (+1315 lines, -267 lines) |
Patch |
 |
M |
chrome/browser/net/http_pipelining_compatibility_client.h
|
View
|
1
2
3
4
5
6
7
8
9
|
2 chunks |
+3 lines, -0 lines |
0 comments
|
Download
|
 |
M |
chrome/browser/net/http_pipelining_compatibility_client.cc
|
View
|
1
2
3
4
5
6
7
8
9
|
3 chunks |
+17 lines, -2 lines |
0 comments
|
Download
|
 |
M |
chrome/browser/net/http_pipelining_compatibility_client_unittest.cc
|
View
|
1
2
3
4
5
|
3 chunks |
+30 lines, -11 lines |
0 comments
|
Download
|
 |
M |
chrome/browser/resources/net_internals/http_pipeline_view.js
|
View
|
1
2
3
4
5
6
7
8
9
10
11
|
2 chunks |
+3 lines, -0 lines |
0 comments
|
Download
|
 |
M |
net/http/http_network_session.h
|
View
|
1
2
3
4
5
6
7
8
9
10
|
5 chunks |
+11 lines, -1 line |
0 comments
|
Download
|
 |
M |
net/http/http_network_session.cc
|
View
|
1
2
3
4
5
6
7
8
9
|
2 chunks |
+3 lines, -1 line |
0 comments
|
Download
|
 |
M |
net/http/http_network_transaction.cc
|
View
|
1
2
3
4
5
6
7
8
9
|
1 chunk |
+8 lines, -0 lines |
0 comments
|
Download
|
 |
M |
net/http/http_pipelined_connection_impl.h
|
View
|
1
2
|
2 chunks |
+19 lines, -1 line |
0 comments
|
Download
|
 |
M |
net/http/http_pipelined_host.h
|
View
|
1
2
3
4
5
6
7
8
9
|
5 chunks |
+20 lines, -6 lines |
0 comments
|
Download
|
 |
A |
net/http/http_pipelined_host.cc
|
View
|
1
2
3
4
5
6
7
8
9
|
1 chunk |
+17 lines, -0 lines |
0 comments
|
Download
|
 |
A |
net/http/http_pipelined_host_forced.h
|
View
|
1
2
|
1 chunk |
+84 lines, -0 lines |
0 comments
|
Download
|
 |
A |
net/http/http_pipelined_host_forced.cc
|
View
|
1
2
3
4
5
6
7
8
9
|
1 chunk |
+108 lines, -0 lines |
0 comments
|
Download
|
 |
A |
net/http/http_pipelined_host_forced_unittest.cc
|
View
|
1
2
3
4
5
6
7
8
9
|
1 chunk |
+106 lines, -0 lines |
0 comments
|
Download
|
 |
M |
net/http/http_pipelined_host_impl.h
|
View
|
1
2
|
3 chunks |
+3 lines, -3 lines |
0 comments
|
Download
|
 |
M |
net/http/http_pipelined_host_impl.cc
|
View
|
1
2
3
4
5
6
7
8
9
|
4 chunks |
+9 lines, -27 lines |
0 comments
|
Download
|
 |
M |
net/http/http_pipelined_host_impl_unittest.cc
|
View
|
1
2
3
4
5
6
7
8
9
|
4 chunks |
+7 lines, -62 lines |
0 comments
|
Download
|
 |
M |
net/http/http_pipelined_host_pool.h
|
View
|
1
2
3
4
5
6
7
8
9
|
4 chunks |
+14 lines, -12 lines |
0 comments
|
Download
|
 |
M |
net/http/http_pipelined_host_pool.cc
|
View
|
1
2
3
4
5
6
7
8
9
|
7 chunks |
+36 lines, -26 lines |
0 comments
|
Download
|
 |
M |
net/http/http_pipelined_host_pool_unittest.cc
|
View
|
1
2
3
4
5
6
7
8
9
|
4 chunks |
+111 lines, -56 lines |
0 comments
|
Download
|
 |
A |
net/http/http_pipelined_host_test_util.h
|
View
|
1
2
3
4
5
6
7
|
1 chunk |
+70 lines, -0 lines |
0 comments
|
Download
|
 |
A |
net/http/http_pipelined_host_test_util.cc
|
View
|
1
2
3
4
5
6
7
|
1 chunk |
+33 lines, -0 lines |
0 comments
|
Download
|
 |
M |
net/http/http_pipelined_network_transaction_unittest.cc
|
View
|
1
2
3
4
5
6
7
8
9
|
21 chunks |
+153 lines, -33 lines |
0 comments
|
Download
|
 |
M |
net/http/http_stream_factory_impl.h
|
View
|
|
3 chunks |
+7 lines, -2 lines |
0 comments
|
Download
|
 |
M |
net/http/http_stream_factory_impl.cc
|
View
|
1
2
3
4
5
6
7
8
9
|
3 chunks |
+24 lines, -7 lines |
0 comments
|
Download
|
 |
M |
net/http/http_stream_factory_impl_job.h
|
View
|
|
2 chunks |
+4 lines, -0 lines |
0 comments
|
Download
|
 |
M |
net/http/http_stream_factory_impl_job.cc
|
View
|
1
2
3
4
5
6
7
8
9
|
6 chunks |
+29 lines, -9 lines |
0 comments
|
Download
|
 |
M |
net/http/http_stream_factory_impl_request.h
|
View
|
1
2
|
3 chunks |
+4 lines, -3 lines |
0 comments
|
Download
|
 |
M |
net/http/http_stream_factory_impl_request.cc
|
View
|
1
2
|
3 chunks |
+17 lines, -5 lines |
0 comments
|
Download
|
 |
M |
net/net.gyp
|
View
|
1
2
3
4
5
6
7
8
9
|
4 chunks |
+9 lines, -0 lines |
0 comments
|
Download
|
 |
A |
net/socket/buffered_write_stream_socket.h
|
View
|
1
2
3
|
1 chunk |
+78 lines, -0 lines |
0 comments
|
Download
|
 |
A |
net/socket/buffered_write_stream_socket.cc
|
View
|
1
2
3
4
|
1 chunk |
+156 lines, -0 lines |
0 comments
|
Download
|
 |
A |
net/socket/buffered_write_stream_socket_unittest.cc
|
View
|
1
2
3
4
5
6
|
1 chunk |
+122 lines, -0 lines |
0 comments
|
Download
|
Total messages: 26 (0 generated)
|