| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |