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

Side by Side Diff: net/http/proxy_connect_redirect_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: Remove sequence numbers from mock reads Created 4 years, 11 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(
106 crypto::ECPrivateKey* key,
107 std::vector<uint8_t>* out) {
108 NOTREACHED();
109 return ERR_NOT_IMPLEMENTED;
110 }
111
105 void ProxyConnectRedirectHttpStream::Drain(HttpNetworkSession* session) { 112 void ProxyConnectRedirectHttpStream::Drain(HttpNetworkSession* session) {
106 NOTREACHED(); 113 NOTREACHED();
107 } 114 }
108 115
109 void ProxyConnectRedirectHttpStream::PopulateNetErrorDetails( 116 void ProxyConnectRedirectHttpStream::PopulateNetErrorDetails(
110 NetErrorDetails* /*details*/) { 117 NetErrorDetails* /*details*/) {
111 return; 118 return;
112 } 119 }
113 120
114 void ProxyConnectRedirectHttpStream::SetPriority(RequestPriority priority) { 121 void ProxyConnectRedirectHttpStream::SetPriority(RequestPriority priority) {
115 // Nothing to do. 122 // Nothing to do.
116 } 123 }
117 124
118 UploadProgress ProxyConnectRedirectHttpStream::GetUploadProgress() const { 125 UploadProgress ProxyConnectRedirectHttpStream::GetUploadProgress() const {
119 return UploadProgress(); 126 return UploadProgress();
120 } 127 }
121 128
122 HttpStream* ProxyConnectRedirectHttpStream::RenewStreamForAuth() { 129 HttpStream* ProxyConnectRedirectHttpStream::RenewStreamForAuth() {
123 NOTREACHED(); 130 NOTREACHED();
124 return NULL; 131 return NULL;
125 } 132 }
126 133
127 } // namespace 134 } // namespace
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698