Index: chromeos/network/onc/onc_certificate_importer_impl.h |
diff --git a/chromeos/network/onc/onc_certificate_importer_impl.h b/chromeos/network/onc/onc_certificate_importer_impl.h |
index 36bc413ae910ad4a5f8c30251c9393697211dea7..471c705d7ae7725a146d8a356ddd932764bafd4e 100644 |
--- a/chromeos/network/onc/onc_certificate_importer_impl.h |
+++ b/chromeos/network/onc/onc_certificate_importer_impl.h |
@@ -12,6 +12,7 @@ |
#include "base/basictypes.h" |
#include "base/memory/ref_counted.h" |
#include "base/memory/scoped_ptr.h" |
+#include "base/memory/weak_ptr.h" |
#include "chromeos/chromeos_export.h" |
#include "chromeos/network/onc/onc_certificate_importer.h" |
#include "components/onc/onc_constants.h" |
@@ -19,6 +20,8 @@ |
namespace base { |
class DictionaryValue; |
class ListValue; |
+class SequencedTaskRunner; |
+class SingleThreadTaskRunner; |
} |
namespace net { |
@@ -38,27 +41,29 @@ namespace onc { |
// certificates. http://crbug.com/252119 |
class CHROMEOS_EXPORT CertificateImporterImpl : public CertificateImporter { |
public: |
- typedef std::map<std::string, scoped_refptr<net::X509Certificate> > |
- CertsByGUID; |
- |
- explicit CertificateImporterImpl(net::NSSCertDatabase* target_nssdb_); |
+ // |task_runner| will be used for NSSCertDatabase accesses. |
+ explicit CertificateImporterImpl( |
Joao da Silva
2014/09/15 12:38:24
no need for explicit
pneubeck (no reviews)
2014/09/17 12:44:21
Done.
|
+ const scoped_refptr<base::SequencedTaskRunner>& task_runner, |
Joao da Silva
2014/09/15 12:38:24
Call it io_task_runner or net_task_runner to make
pneubeck (no reviews)
2014/09/17 12:44:22
Done.
|
+ net::NSSCertDatabase* target_nssdb_); |
+ virtual ~CertificateImporterImpl(); |
// CertificateImporter overrides |
- virtual bool ImportCertificates( |
- const base::ListValue& certificates, |
- ::onc::ONCSource source, |
- net::CertificateList* onc_trusted_certificates) OVERRIDE; |
- |
- // This implements ImportCertificates. Additionally, if |
- // |imported_server_and_ca_certs| is not NULL, it will be filled with the |
- // (GUID, Certificate) pairs of all succesfully imported Server and CA |
- // certificates. |
- bool ParseAndStoreCertificates(bool allow_trust_imports, |
- const base::ListValue& onc_certificates, |
- net::CertificateList* onc_trusted_certificates, |
- CertsByGUID* imported_server_and_ca_certs); |
+ virtual void ImportCertificates(const base::ListValue& certificates, |
+ ::onc::ONCSource source, |
+ const DoneCallback& done_callback) OVERRIDE; |
private: |
+ void RunDoneCallback(const CertificateImporter::DoneCallback& callback, |
+ bool success, |
+ const net::CertificateList& onc_trusted_certificates); |
+ |
+ // This is the synchronous implementation of ImportCertificates. It is |
+ // executed on the given |task_runner_|. |
+ static void ParseAndStoreCertificates(::onc::ONCSource source, |
+ const DoneCallback& done_callback, |
+ base::ListValue* certificates, |
+ net::NSSCertDatabase* nssdb); |
+ |
// Lists the certificates that have the string |label| as their certificate |
// nickname (exact match). |
static void ListCertsWithNickname(const std::string& label, |
@@ -72,30 +77,36 @@ class CHROMEOS_EXPORT CertificateImporterImpl : public CertificateImporter { |
// Parses and stores/removes |certificate| in/from the certificate |
// store. Returns true if the operation succeeded. |
- bool ParseAndStoreCertificate( |
+ static bool ParseAndStoreCertificate( |
bool allow_trust_imports, |
const base::DictionaryValue& certificate, |
- net::CertificateList* onc_trusted_certificates, |
- CertsByGUID* imported_server_and_ca_certs); |
+ net::NSSCertDatabase* nssdb, |
+ net::CertificateList* onc_trusted_certificates); |
// Imports the Server or CA certificate |certificate|. Web trust is only |
// applied if the certificate requests the TrustBits attribute "Web" and if |
// the |allow_trust_imports| permission is granted, otherwise the attribute is |
// ignored. |
- bool ParseServerOrCaCertificate( |
+ static bool ParseServerOrCaCertificate( |
bool allow_trust_imports, |
const std::string& cert_type, |
const std::string& guid, |
const base::DictionaryValue& certificate, |
- net::CertificateList* onc_trusted_certificates, |
- CertsByGUID* imported_server_and_ca_certs); |
+ net::NSSCertDatabase* nssdb, |
+ net::CertificateList* onc_trusted_certificates); |
- bool ParseClientCertificate(const std::string& guid, |
- const base::DictionaryValue& certificate); |
+ static bool ParseClientCertificate(const std::string& guid, |
+ const base::DictionaryValue& certificate, |
+ net::NSSCertDatabase* nssdb); |
+ |
+ // The task runner to use for NSSCertDatabase accesses. |
+ scoped_refptr<base::SequencedTaskRunner> task_runner_; |
Joao da Silva
2014/09/15 12:38:24
io_task_runner_ or net_task_runner_?
pneubeck (no reviews)
2014/09/17 12:44:21
Done.
|
// The certificate database to which certificates are imported. |
net::NSSCertDatabase* target_nssdb_; |
+ base::WeakPtrFactory<CertificateImporterImpl> weak_factory_; |
+ |
DISALLOW_COPY_AND_ASSIGN(CertificateImporterImpl); |
}; |