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

Unified Diff: net/quic/quic_http_stream.cc

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 side-by-side diff with in-line comments
Download patch
Index: net/quic/quic_http_stream.cc
diff --git a/net/quic/quic_http_stream.cc b/net/quic/quic_http_stream.cc
index 2414d0ff290d74122a024fc9b9099385784bdd3f..f8322bba76f2e7a209b7e4717069008714fcc37b 100644
--- a/net/quic/quic_http_stream.cc
+++ b/net/quic/quic_http_stream.cc
@@ -279,6 +279,13 @@ bool QuicHttpStream::GetRemoteEndpoint(IPEndPoint* endpoint) {
return true;
}
+int QuicHttpStream::GetProvidedTokenBindingWithKey(
+ const scoped_ptr<crypto::ECPrivateKey>& key,
+ std::string* header_out) {
+ NOTREACHED();
+ return ERR_NOT_IMPLEMENTED;
+}
+
void QuicHttpStream::Drain(HttpNetworkSession* session) {
NOTREACHED();
Close(false);

Powered by Google App Engine
This is Rietveld 408576698