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_SIGNATURE_H_ | 5 #ifndef CHROMEOS_NETWORK_ONC_ONC_SIGNATURE_H_ |
6 #define CHROMEOS_NETWORK_ONC_ONC_SIGNATURE_H_ | 6 #define CHROMEOS_NETWORK_ONC_ONC_SIGNATURE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/values.h" | 10 #include "base/values.h" |
(...skipping 24 matching lines...) Expand all Loading... |
35 const OncValueSignature& signature, | 35 const OncValueSignature& signature, |
36 const std::string& onc_field_name); | 36 const std::string& onc_field_name); |
37 | 37 |
38 CHROMEOS_EXPORT extern const OncValueSignature kRecommendedSignature; | 38 CHROMEOS_EXPORT extern const OncValueSignature kRecommendedSignature; |
39 CHROMEOS_EXPORT extern const OncValueSignature kEAPSignature; | 39 CHROMEOS_EXPORT extern const OncValueSignature kEAPSignature; |
40 CHROMEOS_EXPORT extern const OncValueSignature kIssuerSubjectPatternSignature; | 40 CHROMEOS_EXPORT extern const OncValueSignature kIssuerSubjectPatternSignature; |
41 CHROMEOS_EXPORT extern const OncValueSignature kCertificatePatternSignature; | 41 CHROMEOS_EXPORT extern const OncValueSignature kCertificatePatternSignature; |
42 CHROMEOS_EXPORT extern const OncValueSignature kIPsecSignature; | 42 CHROMEOS_EXPORT extern const OncValueSignature kIPsecSignature; |
43 CHROMEOS_EXPORT extern const OncValueSignature kL2TPSignature; | 43 CHROMEOS_EXPORT extern const OncValueSignature kL2TPSignature; |
44 CHROMEOS_EXPORT extern const OncValueSignature kOpenVPNSignature; | 44 CHROMEOS_EXPORT extern const OncValueSignature kOpenVPNSignature; |
| 45 CHROMEOS_EXPORT extern const OncValueSignature kVerifyX509Signature; |
45 CHROMEOS_EXPORT extern const OncValueSignature kVPNSignature; | 46 CHROMEOS_EXPORT extern const OncValueSignature kVPNSignature; |
46 CHROMEOS_EXPORT extern const OncValueSignature kEthernetSignature; | 47 CHROMEOS_EXPORT extern const OncValueSignature kEthernetSignature; |
47 CHROMEOS_EXPORT extern const OncValueSignature kIPConfigSignature; | 48 CHROMEOS_EXPORT extern const OncValueSignature kIPConfigSignature; |
48 CHROMEOS_EXPORT extern const OncValueSignature kProxyLocationSignature; | 49 CHROMEOS_EXPORT extern const OncValueSignature kProxyLocationSignature; |
49 CHROMEOS_EXPORT extern const OncValueSignature kProxyManualSignature; | 50 CHROMEOS_EXPORT extern const OncValueSignature kProxyManualSignature; |
50 CHROMEOS_EXPORT extern const OncValueSignature kProxySettingsSignature; | 51 CHROMEOS_EXPORT extern const OncValueSignature kProxySettingsSignature; |
51 CHROMEOS_EXPORT extern const OncValueSignature kWiFiSignature; | 52 CHROMEOS_EXPORT extern const OncValueSignature kWiFiSignature; |
52 CHROMEOS_EXPORT extern const OncValueSignature kCertificateSignature; | 53 CHROMEOS_EXPORT extern const OncValueSignature kCertificateSignature; |
53 CHROMEOS_EXPORT extern const OncValueSignature kNetworkConfigurationSignature; | 54 CHROMEOS_EXPORT extern const OncValueSignature kNetworkConfigurationSignature; |
54 CHROMEOS_EXPORT extern const OncValueSignature | 55 CHROMEOS_EXPORT extern const OncValueSignature |
55 kGlobalNetworkConfigurationSignature; | 56 kGlobalNetworkConfigurationSignature; |
56 CHROMEOS_EXPORT extern const OncValueSignature kCertificateListSignature; | 57 CHROMEOS_EXPORT extern const OncValueSignature kCertificateListSignature; |
57 CHROMEOS_EXPORT extern const OncValueSignature | 58 CHROMEOS_EXPORT extern const OncValueSignature |
58 kNetworkConfigurationListSignature; | 59 kNetworkConfigurationListSignature; |
59 CHROMEOS_EXPORT extern const OncValueSignature kToplevelConfigurationSignature; | 60 CHROMEOS_EXPORT extern const OncValueSignature kToplevelConfigurationSignature; |
60 | 61 |
61 // Derived "ONC with State" signatures. | 62 // Derived "ONC with State" signatures. |
62 CHROMEOS_EXPORT extern const OncValueSignature kNetworkWithStateSignature; | 63 CHROMEOS_EXPORT extern const OncValueSignature kNetworkWithStateSignature; |
63 CHROMEOS_EXPORT extern const OncValueSignature kWiFiWithStateSignature; | 64 CHROMEOS_EXPORT extern const OncValueSignature kWiFiWithStateSignature; |
64 CHROMEOS_EXPORT extern const OncValueSignature kCellularSignature; | 65 CHROMEOS_EXPORT extern const OncValueSignature kCellularSignature; |
65 CHROMEOS_EXPORT extern const OncValueSignature kCellularWithStateSignature; | 66 CHROMEOS_EXPORT extern const OncValueSignature kCellularWithStateSignature; |
66 CHROMEOS_EXPORT extern const OncValueSignature kCellularProviderSignature; | 67 CHROMEOS_EXPORT extern const OncValueSignature kCellularProviderSignature; |
67 CHROMEOS_EXPORT extern const OncValueSignature kCellularApnSignature; | 68 CHROMEOS_EXPORT extern const OncValueSignature kCellularApnSignature; |
68 | 69 |
69 } // namespace onc | 70 } // namespace onc |
70 } // namespace chromeos | 71 } // namespace chromeos |
71 | 72 |
72 #endif // CHROMEOS_NETWORK_ONC_ONC_SIGNATURE_H_ | 73 #endif // CHROMEOS_NETWORK_ONC_ONC_SIGNATURE_H_ |
OLD | NEW |