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

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

Issue 2366893002: net: address review comments for NetLogWithSource renaming (Closed)
Patch Set: Created 4 years, 2 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
« no previous file with comments | « net/http/http_basic_stream.h ('k') | net/http/http_stream_factory.h » ('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 // HttpStream provides an abstraction for a basic http streams, SPDY, and QUIC. 5 // HttpStream provides an abstraction for a basic http streams, SPDY, and QUIC.
6 // The HttpStream subtype is expected to manage the underlying transport 6 // The HttpStream subtype is expected to manage the underlying transport
7 // appropriately. For example, a basic http stream will return the transport 7 // appropriately. For example, a basic http stream will return the transport
8 // socket to the pool for reuse. SPDY streams on the other hand leave the 8 // socket to the pool for reuse. SPDY streams on the other hand leave the
9 // transport socket management to the SpdySession. 9 // transport socket management to the SpdySession.
10 10
(...skipping 12 matching lines...) Expand all
23 #include "net/base/net_export.h" 23 #include "net/base/net_export.h"
24 #include "net/base/request_priority.h" 24 #include "net/base/request_priority.h"
25 #include "net/ssl/token_binding.h" 25 #include "net/ssl/token_binding.h"
26 26
27 namespace crypto { 27 namespace crypto {
28 class ECPrivateKey; 28 class ECPrivateKey;
29 } 29 }
30 30
31 namespace net { 31 namespace net {
32 32
33 class NetLogWithSource;
34 class HttpNetworkSession; 33 class HttpNetworkSession;
35 class HttpRequestHeaders; 34 class HttpRequestHeaders;
36 struct HttpRequestInfo; 35 struct HttpRequestInfo;
37 class HttpResponseInfo; 36 class HttpResponseInfo;
38 class IOBuffer; 37 class IOBuffer;
39 class IPEndPoint; 38 class IPEndPoint;
40 struct LoadTimingInfo; 39 struct LoadTimingInfo;
40 class NetLogWithSource;
41 class SSLCertRequestInfo; 41 class SSLCertRequestInfo;
42 class SSLInfo; 42 class SSLInfo;
43 43
44 class NET_EXPORT_PRIVATE HttpStream { 44 class NET_EXPORT_PRIVATE HttpStream {
45 public: 45 public:
46 HttpStream() {} 46 HttpStream() {}
47 virtual ~HttpStream() {} 47 virtual ~HttpStream() {}
48 48
49 // Initialize stream. Must be called before calling SendRequest(). 49 // Initialize stream. Must be called before calling SendRequest().
50 // |request_info| must outlive the HttpStream. 50 // |request_info| must outlive the HttpStream.
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 // subclass does not support renewing the stream, NULL is returned. 186 // subclass does not support renewing the stream, NULL is returned.
187 virtual HttpStream* RenewStreamForAuth() = 0; 187 virtual HttpStream* RenewStreamForAuth() = 0;
188 188
189 private: 189 private:
190 DISALLOW_COPY_AND_ASSIGN(HttpStream); 190 DISALLOW_COPY_AND_ASSIGN(HttpStream);
191 }; 191 };
192 192
193 } // namespace net 193 } // namespace net
194 194
195 #endif // NET_HTTP_HTTP_STREAM_H_ 195 #endif // NET_HTTP_HTTP_STREAM_H_
OLDNEW
« no previous file with comments | « net/http/http_basic_stream.h ('k') | net/http/http_stream_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698