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

Side by Side Diff: net/http/proxy_connect_redirect_http_stream.cc

Issue 2337253004: Update Token Binding code to the latest drafts (Closed)
Patch Set: Add call to CBS_len() Created 4 years, 3 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #include "net/http/proxy_connect_redirect_http_stream.h" 5 #include "net/http/proxy_connect_redirect_http_stream.h"
6 6
7 #include <cstddef> 7 #include <cstddef>
8 8
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "net/base/net_errors.h" 10 #include "net/base/net_errors.h"
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 void ProxyConnectRedirectHttpStream::GetSSLCertRequestInfo( 95 void ProxyConnectRedirectHttpStream::GetSSLCertRequestInfo(
96 SSLCertRequestInfo* cert_request_info) { 96 SSLCertRequestInfo* cert_request_info) {
97 NOTREACHED(); 97 NOTREACHED();
98 } 98 }
99 99
100 bool ProxyConnectRedirectHttpStream::GetRemoteEndpoint(IPEndPoint* endpoint) { 100 bool ProxyConnectRedirectHttpStream::GetRemoteEndpoint(IPEndPoint* endpoint) {
101 NOTREACHED(); 101 NOTREACHED();
102 return false; 102 return false;
103 } 103 }
104 104
105 Error ProxyConnectRedirectHttpStream::GetSignedEKMForTokenBinding( 105 Error ProxyConnectRedirectHttpStream::GetTokenBindingSignature(
106 crypto::ECPrivateKey* key, 106 crypto::ECPrivateKey* key,
107 TokenBindingType tb_type,
107 std::vector<uint8_t>* out) { 108 std::vector<uint8_t>* out) {
108 NOTREACHED(); 109 NOTREACHED();
109 return ERR_NOT_IMPLEMENTED; 110 return ERR_NOT_IMPLEMENTED;
110 } 111 }
111 112
112 void ProxyConnectRedirectHttpStream::Drain(HttpNetworkSession* session) { 113 void ProxyConnectRedirectHttpStream::Drain(HttpNetworkSession* session) {
113 NOTREACHED(); 114 NOTREACHED();
114 } 115 }
115 116
116 void ProxyConnectRedirectHttpStream::PopulateNetErrorDetails( 117 void ProxyConnectRedirectHttpStream::PopulateNetErrorDetails(
117 NetErrorDetails* /*details*/) { 118 NetErrorDetails* /*details*/) {
118 return; 119 return;
119 } 120 }
120 121
121 void ProxyConnectRedirectHttpStream::SetPriority(RequestPriority priority) { 122 void ProxyConnectRedirectHttpStream::SetPriority(RequestPriority priority) {
122 // Nothing to do. 123 // Nothing to do.
123 } 124 }
124 125
125 HttpStream* ProxyConnectRedirectHttpStream::RenewStreamForAuth() { 126 HttpStream* ProxyConnectRedirectHttpStream::RenewStreamForAuth() {
126 NOTREACHED(); 127 NOTREACHED();
127 return NULL; 128 return NULL;
128 } 129 }
129 130
130 } // namespace 131 } // namespace
OLDNEW
« no previous file with comments | « net/http/proxy_connect_redirect_http_stream.h ('k') | net/quic/chromium/quic_chromium_client_session.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698