OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 CHROMEOS_NETWORK_ONC_ONC_CERTIFICATE_IMPORTER_H_ | 5 #ifndef CHROMEOS_NETWORK_ONC_ONC_CERTIFICATE_IMPORTER_H_ |
6 #define CHROMEOS_NETWORK_ONC_ONC_CERTIFICATE_IMPORTER_H_ | 6 #define CHROMEOS_NETWORK_ONC_ONC_CERTIFICATE_IMPORTER_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/callback_forward.h" |
9 #include "chromeos/chromeos_export.h" | 10 #include "chromeos/chromeos_export.h" |
10 #include "components/onc/onc_constants.h" | 11 #include "components/onc/onc_constants.h" |
11 #include "net/cert/x509_certificate.h" | 12 #include "net/cert/x509_certificate.h" |
12 | 13 |
13 namespace base { | 14 namespace base { |
14 class ListValue; | 15 class ListValue; |
15 } | 16 } |
16 | 17 |
17 namespace chromeos { | 18 namespace chromeos { |
18 namespace onc { | 19 namespace onc { |
19 | 20 |
20 class CHROMEOS_EXPORT CertificateImporter { | 21 class CHROMEOS_EXPORT CertificateImporter { |
21 public: | 22 public: |
| 23 typedef base::Callback< |
| 24 void(bool success, const net::CertificateList& onc_trusted_certificates)> |
| 25 DoneCallback; |
| 26 |
22 CertificateImporter() {} | 27 CertificateImporter() {} |
23 virtual ~CertificateImporter() {} | 28 virtual ~CertificateImporter() {} |
24 | 29 |
25 // Import the |certificates|, which must be a list of ONC Certificate objects. | 30 // Import |certificates|, which must be a list of ONC Certificate objects. |
26 // Certificates are only imported with web trust for user imports. If | 31 // Certificates are only imported with web trust for user imports. If the |
27 // |onc_trusted_certificates| is not NULL, it will be filled with the list | 32 // "Remove" field of a certificate is enabled, then removes the certificate |
28 // of certificates that requested the TrustBit "Web". If the "Remove" field of | 33 // from the store instead of importing. |
29 // a certificate is enabled, then removes the certificate from the store | 34 // When the import is completed, |done_callback| will be called with |success| |
30 // instead of importing. Returns true if all certificates were imported | 35 // equal to true if all certificates were imported successfully. |
31 // successfully. | 36 // |onc_trusted_certificates| will contain the list of certificates that |
32 virtual bool ImportCertificates( | 37 // were imported and requested the TrustBit "Web". |
33 const base::ListValue& certificates, | 38 // Never calls |done_callback| after this importer is destructed. |
34 ::onc::ONCSource source, | 39 virtual void ImportCertificates(const base::ListValue& certificates, |
35 net::CertificateList* onc_trusted_certificates) = 0; | 40 ::onc::ONCSource source, |
| 41 const DoneCallback& done_callback) = 0; |
36 | 42 |
37 private: | 43 private: |
38 DISALLOW_COPY_AND_ASSIGN(CertificateImporter); | 44 DISALLOW_COPY_AND_ASSIGN(CertificateImporter); |
39 }; | 45 }; |
40 | 46 |
41 } // namespace onc | 47 } // namespace onc |
42 } // namespace chromeos | 48 } // namespace chromeos |
43 | 49 |
44 #endif // CHROMEOS_NETWORK_ONC_ONC_CERTIFICATE_IMPORTER_H_ | 50 #endif // CHROMEOS_NETWORK_ONC_ONC_CERTIFICATE_IMPORTER_H_ |
OLD | NEW |