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

Side by Side Diff: net/http/http_pipelined_host_forced.h

Issue 9959033: Move NextProto enum to a new file net/socket/next_proto.h (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address wtc's comments Created 8 years, 8 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
« no previous file with comments | « net/http/http_pipelined_host.h ('k') | net/http/http_pipelined_host_forced.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #ifndef NET_HTTP_HTTP_PIPELINED_HOST_FORCED_H_ 5 #ifndef NET_HTTP_HTTP_PIPELINED_HOST_FORCED_H_
6 #define NET_HTTP_HTTP_PIPELINED_HOST_FORCED_H_ 6 #define NET_HTTP_HTTP_PIPELINED_HOST_FORCED_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 10
(...skipping 29 matching lines...) Expand all
40 HttpPipelinedConnection::Factory* factory); 40 HttpPipelinedConnection::Factory* factory);
41 virtual ~HttpPipelinedHostForced(); 41 virtual ~HttpPipelinedHostForced();
42 42
43 // HttpPipelinedHost interface 43 // HttpPipelinedHost interface
44 virtual HttpPipelinedStream* CreateStreamOnNewPipeline( 44 virtual HttpPipelinedStream* CreateStreamOnNewPipeline(
45 ClientSocketHandle* connection, 45 ClientSocketHandle* connection,
46 const SSLConfig& used_ssl_config, 46 const SSLConfig& used_ssl_config,
47 const ProxyInfo& used_proxy_info, 47 const ProxyInfo& used_proxy_info,
48 const BoundNetLog& net_log, 48 const BoundNetLog& net_log,
49 bool was_npn_negotiated, 49 bool was_npn_negotiated,
50 SSLClientSocket::NextProto protocol_negotiated) OVERRIDE; 50 NextProto protocol_negotiated) OVERRIDE;
51 51
52 virtual HttpPipelinedStream* CreateStreamOnExistingPipeline() OVERRIDE; 52 virtual HttpPipelinedStream* CreateStreamOnExistingPipeline() OVERRIDE;
53 53
54 virtual bool IsExistingPipelineAvailable() const OVERRIDE; 54 virtual bool IsExistingPipelineAvailable() const OVERRIDE;
55 55
56 virtual const Key& GetKey() const OVERRIDE; 56 virtual const Key& GetKey() const OVERRIDE;
57 57
58 virtual base::Value* PipelineInfoToValue() const OVERRIDE; 58 virtual base::Value* PipelineInfoToValue() const OVERRIDE;
59 59
60 // HttpPipelinedConnection::Delegate interface 60 // HttpPipelinedConnection::Delegate interface
(...skipping 14 matching lines...) Expand all
75 const Key key_; 75 const Key key_;
76 scoped_ptr<HttpPipelinedConnection> pipeline_; 76 scoped_ptr<HttpPipelinedConnection> pipeline_;
77 scoped_ptr<HttpPipelinedConnection::Factory> factory_; 77 scoped_ptr<HttpPipelinedConnection::Factory> factory_;
78 78
79 DISALLOW_COPY_AND_ASSIGN(HttpPipelinedHostForced); 79 DISALLOW_COPY_AND_ASSIGN(HttpPipelinedHostForced);
80 }; 80 };
81 81
82 } // namespace net 82 } // namespace net
83 83
84 #endif // NET_HTTP_HTTP_PIPELINED_HOST_FORCED_H_ 84 #endif // NET_HTTP_HTTP_PIPELINED_HOST_FORCED_H_
OLDNEW
« no previous file with comments | « net/http/http_pipelined_host.h ('k') | net/http/http_pipelined_host_forced.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698