OLD | NEW |
| (Empty) |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #include "net/http/http_pipelined_host_test_util.h" | |
6 | |
7 #include "net/proxy/proxy_info.h" | |
8 #include "net/ssl/ssl_config_service.h" | |
9 | |
10 namespace net { | |
11 | |
12 MockHostDelegate::MockHostDelegate() { | |
13 } | |
14 | |
15 MockHostDelegate::~MockHostDelegate() { | |
16 } | |
17 | |
18 MockPipelineFactory::MockPipelineFactory() { | |
19 } | |
20 | |
21 MockPipelineFactory::~MockPipelineFactory() { | |
22 } | |
23 | |
24 MockPipeline::MockPipeline(int depth, bool usable, bool active) | |
25 : depth_(depth), | |
26 usable_(usable), | |
27 active_(active) { | |
28 } | |
29 | |
30 MockPipeline::~MockPipeline() { | |
31 } | |
32 | |
33 } // namespace net | |
OLD | NEW |