| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/base/ssl_cert_request_info.h" | 5 #include "net/base/ssl_cert_request_info.h" |
| 6 | 6 |
| 7 #include "net/base/x509_certificate.h" | 7 #include "net/base/x509_certificate.h" |
| 8 | 8 |
| 9 namespace net { | 9 namespace net { |
| 10 | 10 |
| 11 SSLCertRequestInfo::SSLCertRequestInfo() : is_proxy(false) { | 11 SSLCertRequestInfo::SSLCertRequestInfo() : |
| 12 is_proxy(false), |
| 13 no_client_certs(false) { |
| 12 } | 14 } |
| 13 | 15 |
| 14 void SSLCertRequestInfo::Reset() { | 16 void SSLCertRequestInfo::Reset() { |
| 15 host_and_port.clear(); | 17 host_and_port.clear(); |
| 16 client_certs.clear(); | 18 client_certs.clear(); |
| 17 is_proxy = false; | 19 is_proxy = false; |
| 20 no_client_certs = false; |
| 18 } | 21 } |
| 19 | 22 |
| 20 SSLCertRequestInfo::~SSLCertRequestInfo() { | 23 SSLCertRequestInfo::~SSLCertRequestInfo() { |
| 21 } | 24 } |
| 22 | 25 |
| 23 } // namespace net | 26 } // namespace net |
| OLD | NEW |