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

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

Issue 9433015: Add a force pipelining option to load flags. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fix build on other platforms Created 8 years, 10 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
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698