| 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_CHROMEOS_H_ | 5 #ifndef NET_SSL_CLIENT_CERT_STORE_CHROMEOS_H_ |
| 6 #define NET_SSL_CLIENT_CERT_STORE_CHROMEOS_H_ | 6 #define NET_SSL_CLIENT_CERT_STORE_CHROMEOS_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "crypto/scoped_nss_types.h" | 10 #include "crypto/scoped_nss_types.h" |
| 11 #include "net/cert/nss_profile_filter_chromeos.h" | 11 #include "net/cert/nss_profile_filter_chromeos.h" |
| 12 #include "net/ssl/client_cert_store_nss.h" | 12 #include "net/ssl/client_cert_store_nss.h" |
| 13 | 13 |
| 14 namespace net { | 14 namespace net { |
| 15 | 15 |
| 16 class NET_EXPORT ClientCertStoreChromeOS : public ClientCertStoreNSS { | 16 class NET_EXPORT ClientCertStoreChromeOS : public ClientCertStoreNSS { |
| 17 public: | 17 public: |
| 18 // Constructs a ClientCertStore that will return client certs available on | 18 // Constructs a ClientCertStore that will return client certs available on |
| 19 // the user's private and public slots. If |use_system_slot| is true, certs on | 19 // the user's private and public slots. If |use_system_slot| is true, certs on |
| 20 // the system slot will also be returned. | 20 // the system slot will also be returned. |
| 21 ClientCertStoreChromeOS( | 21 ClientCertStoreChromeOS( |
| 22 bool use_system_slot, | 22 bool use_system_slot, |
| 23 const std::string& username_hash, | 23 const std::string& username_hash, |
| 24 const PasswordDelegateFactory& password_delegate_factory); | 24 const PasswordDelegateFactory& password_delegate_factory); |
| 25 virtual ~ClientCertStoreChromeOS(); | 25 virtual ~ClientCertStoreChromeOS(); |
| 26 | 26 |
| 27 // ClientCertStoreNSS: | 27 // ClientCertStoreNSS: |
| 28 virtual void GetClientCerts(const SSLCertRequestInfo& cert_request_info, | 28 virtual void GetClientCerts(const SSLCertRequestInfo& cert_request_info, |
| 29 CertificateList* selected_certs, | 29 CertificateList* selected_certs, |
| 30 const base::Closure& callback) OVERRIDE; | 30 const base::Closure& callback) override; |
| 31 | 31 |
| 32 protected: | 32 protected: |
| 33 // ClientCertStoreNSS: | 33 // ClientCertStoreNSS: |
| 34 virtual void GetClientCertsImpl(CERTCertList* cert_list, | 34 virtual void GetClientCertsImpl(CERTCertList* cert_list, |
| 35 const SSLCertRequestInfo& request, | 35 const SSLCertRequestInfo& request, |
| 36 bool query_nssdb, | 36 bool query_nssdb, |
| 37 CertificateList* selected_certs) OVERRIDE; | 37 CertificateList* selected_certs) override; |
| 38 | 38 |
| 39 private: | 39 private: |
| 40 void DidGetSystemAndPrivateSlot(const SSLCertRequestInfo* request, | 40 void DidGetSystemAndPrivateSlot(const SSLCertRequestInfo* request, |
| 41 CertificateList* selected_certs, | 41 CertificateList* selected_certs, |
| 42 const base::Closure& callback, | 42 const base::Closure& callback, |
| 43 crypto::ScopedPK11Slot system_slot, | 43 crypto::ScopedPK11Slot system_slot, |
| 44 crypto::ScopedPK11Slot private_slot); | 44 crypto::ScopedPK11Slot private_slot); |
| 45 | 45 |
| 46 bool use_system_slot_; | 46 bool use_system_slot_; |
| 47 std::string username_hash_; | 47 std::string username_hash_; |
| 48 NSSProfileFilterChromeOS profile_filter_; | 48 NSSProfileFilterChromeOS profile_filter_; |
| 49 | 49 |
| 50 DISALLOW_COPY_AND_ASSIGN(ClientCertStoreChromeOS); | 50 DISALLOW_COPY_AND_ASSIGN(ClientCertStoreChromeOS); |
| 51 }; | 51 }; |
| 52 | 52 |
| 53 } // namespace net | 53 } // namespace net |
| 54 | 54 |
| 55 #endif // NET_SSL_CLIENT_CERT_STORE_CHROMEOS_H_ | 55 #endif // NET_SSL_CLIENT_CERT_STORE_CHROMEOS_H_ |
| OLD | NEW |