diff options
Diffstat (limited to 'net/quic')
-rw-r--r-- | net/quic/quic_http_stream.cc | 6 | ||||
-rw-r--r-- | net/quic/quic_http_stream.h | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/net/quic/quic_http_stream.cc b/net/quic/quic_http_stream.cc index 81b57f8..7cd89ce 100644 --- a/net/quic/quic_http_stream.cc +++ b/net/quic/quic_http_stream.cc @@ -281,6 +281,12 @@ bool QuicHttpStream::GetRemoteEndpoint(IPEndPoint* endpoint) { return true; } +Error QuicHttpStream::GetSignedEKMForTokenBinding(crypto::ECPrivateKey* key, + std::vector<uint8_t>* out) { + NOTREACHED(); + return ERR_NOT_IMPLEMENTED; +} + void QuicHttpStream::Drain(HttpNetworkSession* session) { NOTREACHED(); Close(false); diff --git a/net/quic/quic_http_stream.h b/net/quic/quic_http_stream.h index 7abdf8b..0b23ea5 100644 --- a/net/quic/quic_http_stream.h +++ b/net/quic/quic_http_stream.h @@ -61,6 +61,8 @@ class NET_EXPORT_PRIVATE QuicHttpStream void GetSSLInfo(SSLInfo* ssl_info) override; void GetSSLCertRequestInfo(SSLCertRequestInfo* cert_request_info) override; bool GetRemoteEndpoint(IPEndPoint* endpoint) override; + Error GetSignedEKMForTokenBinding(crypto::ECPrivateKey* key, + std::vector<uint8_t>* out) override; void Drain(HttpNetworkSession* session) override; void PopulateNetErrorDetails(NetErrorDetails* details) override; void SetPriority(RequestPriority priority) override; |