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

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

Issue 1378613004: Set Token-Binding HTTP header (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@tb-tls-ext-new
Patch Set: Remove sequence numbers from mock reads Created 4 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
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 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 int64_t GetTotalReceivedBytes() const override; 72 int64_t GetTotalReceivedBytes() const override;
73 // Total number of bytes sent over the network of SPDY frames associated with 73 // Total number of bytes sent over the network of SPDY frames associated with
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,
83 std::vector<uint8_t>* out) override;
82 void Drain(HttpNetworkSession* session) override; 84 void Drain(HttpNetworkSession* session) override;
83 void PopulateNetErrorDetails(NetErrorDetails* details) override; 85 void PopulateNetErrorDetails(NetErrorDetails* details) override;
84 void SetPriority(RequestPriority priority) override; 86 void SetPriority(RequestPriority priority) override;
85 87
86 // SpdyStream::Delegate implementation. 88 // SpdyStream::Delegate implementation.
87 void OnRequestHeadersSent() override; 89 void OnRequestHeadersSent() override;
88 SpdyResponseHeadersStatus OnResponseHeadersUpdated( 90 SpdyResponseHeadersStatus OnResponseHeadersUpdated(
89 const SpdyHeaderBlock& response_headers) override; 91 const SpdyHeaderBlock& response_headers) override;
90 void OnDataReceived(scoped_ptr<SpdyBuffer> buffer) override; 92 void OnDataReceived(scoped_ptr<SpdyBuffer> buffer) override;
91 void OnDataSent() override; 93 void OnDataSent() override;
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 bool direct_; 177 bool direct_;
176 178
177 base::WeakPtrFactory<SpdyHttpStream> weak_factory_; 179 base::WeakPtrFactory<SpdyHttpStream> weak_factory_;
178 180
179 DISALLOW_COPY_AND_ASSIGN(SpdyHttpStream); 181 DISALLOW_COPY_AND_ASSIGN(SpdyHttpStream);
180 }; 182 };
181 183
182 } // namespace net 184 } // namespace net
183 185
184 #endif // NET_SPDY_SPDY_HTTP_STREAM_H_ 186 #endif // NET_SPDY_SPDY_HTTP_STREAM_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698