| 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 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 <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 // Where the ONC blob comes from. | 78 // Where the ONC blob comes from. |
| 79 ONCSource onc_source_; | 79 ONCSource onc_source_; |
| 80 | 80 |
| 81 // Whether certificates with Web trust should be stored when pushed from a | 81 // Whether certificates with Web trust should be stored when pushed from a |
| 82 // policy source. | 82 // policy source. |
| 83 bool allow_web_trust_from_policy_; | 83 bool allow_web_trust_from_policy_; |
| 84 | 84 |
| 85 DISALLOW_COPY_AND_ASSIGN(CertificateImporter); | 85 DISALLOW_COPY_AND_ASSIGN(CertificateImporter); |
| 86 }; | 86 }; |
| 87 | 87 |
| 88 } // chromeos | 88 } // namespace onc |
| 89 } // onc | 89 } // namespace chromeos |
| 90 | 90 |
| 91 #endif // CHROMEOS_NETWORK_ONC_ONC_CERTIFICATE_IMPORTER_H_ | 91 #endif // CHROMEOS_NETWORK_ONC_ONC_CERTIFICATE_IMPORTER_H_ |
| OLD | NEW |