Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(92)

Side by Side Diff: net/http/http_pipelined_host_test_util.cc

Issue 12680003: net: split net/ssl out of net/base (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "net/http/http_pipelined_host_test_util.h" 5 #include "net/http/http_pipelined_host_test_util.h"
6 6
7 #include "net/base/ssl_config_service.h"
8 #include "net/proxy/proxy_info.h" 7 #include "net/proxy/proxy_info.h"
8 #include "net/ssl/ssl_config_service.h"
9 9
10 namespace net { 10 namespace net {
11 11
12 MockHostDelegate::MockHostDelegate() { 12 MockHostDelegate::MockHostDelegate() {
13 } 13 }
14 14
15 MockHostDelegate::~MockHostDelegate() { 15 MockHostDelegate::~MockHostDelegate() {
16 } 16 }
17 17
18 MockPipelineFactory::MockPipelineFactory() { 18 MockPipelineFactory::MockPipelineFactory() {
19 } 19 }
20 20
21 MockPipelineFactory::~MockPipelineFactory() { 21 MockPipelineFactory::~MockPipelineFactory() {
22 } 22 }
23 23
24 MockPipeline::MockPipeline(int depth, bool usable, bool active) 24 MockPipeline::MockPipeline(int depth, bool usable, bool active)
25 : depth_(depth), 25 : depth_(depth),
26 usable_(usable), 26 usable_(usable),
27 active_(active) { 27 active_(active) {
28 } 28 }
29 29
30 MockPipeline::~MockPipeline() { 30 MockPipeline::~MockPipeline() {
31 } 31 }
32 32
33 } // namespace net 33 } // namespace net
OLDNEW
« no previous file with comments | « net/http/http_pipelined_host_pool_unittest.cc ('k') | net/http/http_pipelined_network_transaction_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698