OLD | NEW |
(Empty) | |
| 1 // Copyright 2012 Google Inc. All Rights Reserved. |
| 2 // Author: simonjam@google.com (James Simonsen) |
| 3 |
| 4 #include "net/http/http_pipelined_host_test_util.h" |
| 5 |
| 6 #include "net/base/ssl_config_service.h" |
| 7 #include "net/proxy/proxy_info.h" |
| 8 |
| 9 namespace net { |
| 10 |
| 11 MockHostDelegate::MockHostDelegate() { |
| 12 } |
| 13 |
| 14 MockHostDelegate::~MockHostDelegate() { |
| 15 } |
| 16 |
| 17 MockPipelineFactory::MockPipelineFactory() { |
| 18 } |
| 19 |
| 20 MockPipelineFactory::~MockPipelineFactory() { |
| 21 } |
| 22 |
| 23 MockPipeline::MockPipeline(int depth, bool usable, bool active) |
| 24 : depth_(depth), |
| 25 usable_(usable), |
| 26 active_(active) { |
| 27 } |
| 28 |
| 29 MockPipeline::~MockPipeline() { |
| 30 } |
| 31 |
| 32 } // namespace net |
OLD | NEW |