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 #ifndef NET_BASE_CLIENT_CERT_STORE_IMPL_H_ | 5 #ifndef NET_SSL_CLIENT_CERT_STORE_IMPL_H_ |
6 #define NET_BASE_CLIENT_CERT_STORE_IMPL_H_ | 6 #define NET_SSL_CLIENT_CERT_STORE_IMPL_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/gtest_prod_util.h" | 9 #include "base/gtest_prod_util.h" |
10 #include "net/base/client_cert_store.h" | |
11 #include "net/base/net_export.h" | 10 #include "net/base/net_export.h" |
12 #include "net/base/ssl_cert_request_info.h" | 11 #include "net/ssl/client_cert_store.h" |
| 12 #include "net/ssl/ssl_cert_request_info.h" |
13 | 13 |
14 namespace net { | 14 namespace net { |
15 | 15 |
16 class NET_EXPORT ClientCertStoreImpl : public ClientCertStore { | 16 class NET_EXPORT ClientCertStoreImpl : public ClientCertStore { |
17 public: | 17 public: |
18 ClientCertStoreImpl() {} | 18 ClientCertStoreImpl() {} |
19 | 19 |
20 virtual ~ClientCertStoreImpl() {} | 20 virtual ~ClientCertStoreImpl() {} |
21 | 21 |
22 // ClientCertStore: | 22 // ClientCertStore: |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 const CertificateList& regular_certs, | 54 const CertificateList& regular_certs, |
55 const SSLCertRequestInfo& request, | 55 const SSLCertRequestInfo& request, |
56 CertificateList* selected_certs); | 56 CertificateList* selected_certs); |
57 #endif | 57 #endif |
58 | 58 |
59 DISALLOW_COPY_AND_ASSIGN(ClientCertStoreImpl); | 59 DISALLOW_COPY_AND_ASSIGN(ClientCertStoreImpl); |
60 }; | 60 }; |
61 | 61 |
62 } // namespace net | 62 } // namespace net |
63 | 63 |
64 #endif // NET_BASE_CLIENT_CERT_STORE_IMPL_H_ | 64 #endif // NET_SSL_CLIENT_CERT_STORE_IMPL_H_ |
OLD | NEW |