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

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: Add UMA logging of Token Binding support and NetLog event for Token Binding key lookup Created 5 years, 1 month 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 int GetProvidedTokenBindingWithKey(
83 const scoped_ptr<crypto::ECPrivateKey>& key,
84 std::string* header_out) override;
82 void Drain(HttpNetworkSession* session) override; 85 void Drain(HttpNetworkSession* session) override;
83 void SetPriority(RequestPriority priority) override; 86 void SetPriority(RequestPriority priority) override;
84 87
85 // SpdyStream::Delegate implementation. 88 // SpdyStream::Delegate implementation.
86 void OnRequestHeadersSent() override; 89 void OnRequestHeadersSent() override;
87 SpdyResponseHeadersStatus OnResponseHeadersUpdated( 90 SpdyResponseHeadersStatus OnResponseHeadersUpdated(
88 const SpdyHeaderBlock& response_headers) override; 91 const SpdyHeaderBlock& response_headers) override;
89 void OnDataReceived(scoped_ptr<SpdyBuffer> buffer) override; 92 void OnDataReceived(scoped_ptr<SpdyBuffer> buffer) override;
90 void OnDataSent() override; 93 void OnDataSent() override;
91 void OnTrailers(const SpdyHeaderBlock& trailers) override; 94 void OnTrailers(const SpdyHeaderBlock& trailers) override;
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 bool direct_; 175 bool direct_;
173 176
174 base::WeakPtrFactory<SpdyHttpStream> weak_factory_; 177 base::WeakPtrFactory<SpdyHttpStream> weak_factory_;
175 178
176 DISALLOW_COPY_AND_ASSIGN(SpdyHttpStream); 179 DISALLOW_COPY_AND_ASSIGN(SpdyHttpStream);
177 }; 180 };
178 181
179 } // namespace net 182 } // namespace net
180 183
181 #endif // NET_SPDY_SPDY_HTTP_STREAM_H_ 184 #endif // NET_SPDY_SPDY_HTTP_STREAM_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698