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 #ifndef NET_SSL_CLIENT_CERT_STORE_MAC_H_ | 5 #ifndef NET_SSL_CLIENT_CERT_STORE_MAC_H_ |
6 #define NET_SSL_CLIENT_CERT_STORE_MAC_H_ | 6 #define NET_SSL_CLIENT_CERT_STORE_MAC_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/callback.h" | 9 #include "base/callback.h" |
10 #include "base/gtest_prod_util.h" | |
11 #include "net/base/net_export.h" | 10 #include "net/base/net_export.h" |
12 #include "net/ssl/client_cert_store.h" | 11 #include "net/ssl/client_cert_store.h" |
13 #include "net/ssl/ssl_cert_request_info.h" | 12 #include "net/ssl/ssl_cert_request_info.h" |
14 | 13 |
15 namespace net { | 14 namespace net { |
16 | 15 |
17 class NET_EXPORT ClientCertStoreMac : public ClientCertStore { | 16 class NET_EXPORT ClientCertStoreMac : public ClientCertStore { |
18 public: | 17 public: |
19 ClientCertStoreMac(); | 18 ClientCertStoreMac(); |
20 ~ClientCertStoreMac() override; | 19 ~ClientCertStoreMac() override; |
(...skipping 25 matching lines...) Expand all Loading... |
46 const CertificateList& regular_certs, | 45 const CertificateList& regular_certs, |
47 const SSLCertRequestInfo& request, | 46 const SSLCertRequestInfo& request, |
48 CertificateList* selected_certs); | 47 CertificateList* selected_certs); |
49 | 48 |
50 DISALLOW_COPY_AND_ASSIGN(ClientCertStoreMac); | 49 DISALLOW_COPY_AND_ASSIGN(ClientCertStoreMac); |
51 }; | 50 }; |
52 | 51 |
53 } // namespace net | 52 } // namespace net |
54 | 53 |
55 #endif // NET_SSL_CLIENT_CERT_STORE_MAC_H_ | 54 #endif // NET_SSL_CLIENT_CERT_STORE_MAC_H_ |
OLD | NEW |