| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/client_cert_store_impl.h" | 5 #include "net/ssl/client_cert_store_impl.h" |
| 6 | 6 |
| 7 #include <CommonCrypto/CommonDigest.h> | 7 #include <CommonCrypto/CommonDigest.h> |
| 8 #include <CoreFoundation/CFArray.h> | 8 #include <CoreFoundation/CFArray.h> |
| 9 #include <CoreServices/CoreServices.h> | 9 #include <CoreServices/CoreServices.h> |
| 10 #include <Security/SecBase.h> | 10 #include <Security/SecBase.h> |
| 11 #include <Security/Security.h> | 11 #include <Security/Security.h> |
| 12 | 12 |
| 13 #include <algorithm> | 13 #include <algorithm> |
| 14 #include <string> | 14 #include <string> |
| 15 | 15 |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 const scoped_refptr<X509Certificate>& preferred_cert, | 163 const scoped_refptr<X509Certificate>& preferred_cert, |
| 164 const CertificateList& regular_certs, | 164 const CertificateList& regular_certs, |
| 165 const SSLCertRequestInfo& request, | 165 const SSLCertRequestInfo& request, |
| 166 CertificateList* selected_certs) { | 166 CertificateList* selected_certs) { |
| 167 return GetClientCertsImpl(preferred_cert, regular_certs, request, | 167 return GetClientCertsImpl(preferred_cert, regular_certs, request, |
| 168 selected_certs); | 168 selected_certs); |
| 169 } | 169 } |
| 170 #endif | 170 #endif |
| 171 | 171 |
| 172 } // namespace net | 172 } // namespace net |
| OLD | NEW |