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

Side by Side Diff: net/spdy/spdy_http_stream.h

Issue 1884943003: HttpStreamParser: Don't reuse sockets which receive unparsed data. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix drainer test ('True' means closed...) Created 4 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
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_SPDY_SPDY_HTTP_STREAM_H_ 5 #ifndef NET_SPDY_SPDY_HTTP_STREAM_H_
6 #define NET_SPDY_SPDY_HTTP_STREAM_H_ 6 #define NET_SPDY_SPDY_HTTP_STREAM_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <list> 10 #include <list>
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 // this stream, including the size of frame headers, before SSL encryption and 74 // this stream, including the size of frame headers, before SSL encryption and
75 // not including proxy overhead. Note that some SPDY frames such as pings are 75 // not including proxy overhead. Note that some SPDY frames such as pings are
76 // not associated with any stream, and are not included in this value. 76 // not associated with any stream, and are not included in this value.
77 int64_t GetTotalSentBytes() const override; 77 int64_t GetTotalSentBytes() const override;
78 bool GetLoadTimingInfo(LoadTimingInfo* load_timing_info) const override; 78 bool GetLoadTimingInfo(LoadTimingInfo* load_timing_info) const override;
79 void GetSSLInfo(SSLInfo* ssl_info) override; 79 void GetSSLInfo(SSLInfo* ssl_info) override;
80 void GetSSLCertRequestInfo(SSLCertRequestInfo* cert_request_info) override; 80 void GetSSLCertRequestInfo(SSLCertRequestInfo* cert_request_info) override;
81 bool GetRemoteEndpoint(IPEndPoint* endpoint) override; 81 bool GetRemoteEndpoint(IPEndPoint* endpoint) override;
82 Error GetSignedEKMForTokenBinding(crypto::ECPrivateKey* key, 82 Error GetSignedEKMForTokenBinding(crypto::ECPrivateKey* key,
83 std::vector<uint8_t>* out) override; 83 std::vector<uint8_t>* out) override;
84 void Drain(HttpNetworkSession* session) override; 84 void Drain(HttpNetworkSession* session,
85 scoped_ptr<HttpResponseInfo> response_info) override;
85 void PopulateNetErrorDetails(NetErrorDetails* details) override; 86 void PopulateNetErrorDetails(NetErrorDetails* details) override;
86 void SetPriority(RequestPriority priority) override; 87 void SetPriority(RequestPriority priority) override;
87 88
88 // SpdyStream::Delegate implementation. 89 // SpdyStream::Delegate implementation.
89 void OnRequestHeadersSent() override; 90 void OnRequestHeadersSent() override;
90 SpdyResponseHeadersStatus OnResponseHeadersUpdated( 91 SpdyResponseHeadersStatus OnResponseHeadersUpdated(
91 const SpdyHeaderBlock& response_headers) override; 92 const SpdyHeaderBlock& response_headers) override;
92 void OnDataReceived(scoped_ptr<SpdyBuffer> buffer) override; 93 void OnDataReceived(scoped_ptr<SpdyBuffer> buffer) override;
93 void OnDataSent() override; 94 void OnDataSent() override;
94 void OnTrailers(const SpdyHeaderBlock& trailers) override; 95 void OnTrailers(const SpdyHeaderBlock& trailers) override;
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 bool direct_; 178 bool direct_;
178 179
179 base::WeakPtrFactory<SpdyHttpStream> weak_factory_; 180 base::WeakPtrFactory<SpdyHttpStream> weak_factory_;
180 181
181 DISALLOW_COPY_AND_ASSIGN(SpdyHttpStream); 182 DISALLOW_COPY_AND_ASSIGN(SpdyHttpStream);
182 }; 183 };
183 184
184 } // namespace net 185 } // namespace net
185 186
186 #endif // NET_SPDY_SPDY_HTTP_STREAM_H_ 187 #endif // NET_SPDY_SPDY_HTTP_STREAM_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698