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 29 matching lines...) Expand all Loading... |
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 kXAUTHSignature; | 44 CHROMEOS_EXPORT extern const OncValueSignature kXAUTHSignature; |
45 CHROMEOS_EXPORT extern const OncValueSignature kOpenVPNSignature; | 45 CHROMEOS_EXPORT extern const OncValueSignature kOpenVPNSignature; |
46 CHROMEOS_EXPORT extern const OncValueSignature kVerifyX509Signature; | 46 CHROMEOS_EXPORT extern const OncValueSignature kVerifyX509Signature; |
47 CHROMEOS_EXPORT extern const OncValueSignature kVPNSignature; | 47 CHROMEOS_EXPORT extern const OncValueSignature kVPNSignature; |
48 CHROMEOS_EXPORT extern const OncValueSignature kEthernetSignature; | 48 CHROMEOS_EXPORT extern const OncValueSignature kEthernetSignature; |
49 CHROMEOS_EXPORT extern const OncValueSignature kIPConfigSignature; | 49 CHROMEOS_EXPORT extern const OncValueSignature kIPConfigSignature; |
| 50 CHROMEOS_EXPORT extern const OncValueSignature kSavedIPConfigSignature; |
| 51 CHROMEOS_EXPORT extern const OncValueSignature kStaticIPConfigSignature; |
50 CHROMEOS_EXPORT extern const OncValueSignature kProxyLocationSignature; | 52 CHROMEOS_EXPORT extern const OncValueSignature kProxyLocationSignature; |
51 CHROMEOS_EXPORT extern const OncValueSignature kProxyManualSignature; | 53 CHROMEOS_EXPORT extern const OncValueSignature kProxyManualSignature; |
52 CHROMEOS_EXPORT extern const OncValueSignature kProxySettingsSignature; | 54 CHROMEOS_EXPORT extern const OncValueSignature kProxySettingsSignature; |
53 CHROMEOS_EXPORT extern const OncValueSignature kWiFiSignature; | 55 CHROMEOS_EXPORT extern const OncValueSignature kWiFiSignature; |
54 CHROMEOS_EXPORT extern const OncValueSignature kCertificateSignature; | 56 CHROMEOS_EXPORT extern const OncValueSignature kCertificateSignature; |
55 CHROMEOS_EXPORT extern const OncValueSignature kNetworkConfigurationSignature; | 57 CHROMEOS_EXPORT extern const OncValueSignature kNetworkConfigurationSignature; |
56 CHROMEOS_EXPORT extern const OncValueSignature | 58 CHROMEOS_EXPORT extern const OncValueSignature |
57 kGlobalNetworkConfigurationSignature; | 59 kGlobalNetworkConfigurationSignature; |
58 CHROMEOS_EXPORT extern const OncValueSignature kCertificateListSignature; | 60 CHROMEOS_EXPORT extern const OncValueSignature kCertificateListSignature; |
59 CHROMEOS_EXPORT extern const OncValueSignature | 61 CHROMEOS_EXPORT extern const OncValueSignature |
60 kNetworkConfigurationListSignature; | 62 kNetworkConfigurationListSignature; |
61 CHROMEOS_EXPORT extern const OncValueSignature kToplevelConfigurationSignature; | 63 CHROMEOS_EXPORT extern const OncValueSignature kToplevelConfigurationSignature; |
62 | 64 |
63 // Derived "ONC with State" signatures. | 65 // Derived "ONC with State" signatures. |
64 CHROMEOS_EXPORT extern const OncValueSignature kNetworkWithStateSignature; | 66 CHROMEOS_EXPORT extern const OncValueSignature kNetworkWithStateSignature; |
65 CHROMEOS_EXPORT extern const OncValueSignature kWiFiWithStateSignature; | 67 CHROMEOS_EXPORT extern const OncValueSignature kWiFiWithStateSignature; |
66 CHROMEOS_EXPORT extern const OncValueSignature kCellularSignature; | 68 CHROMEOS_EXPORT extern const OncValueSignature kCellularSignature; |
67 CHROMEOS_EXPORT extern const OncValueSignature kCellularWithStateSignature; | 69 CHROMEOS_EXPORT extern const OncValueSignature kCellularWithStateSignature; |
68 CHROMEOS_EXPORT extern const OncValueSignature kCellularProviderSignature; | 70 CHROMEOS_EXPORT extern const OncValueSignature kCellularProviderSignature; |
69 CHROMEOS_EXPORT extern const OncValueSignature kCellularApnSignature; | 71 CHROMEOS_EXPORT extern const OncValueSignature kCellularApnSignature; |
70 CHROMEOS_EXPORT extern const OncValueSignature kCellularFoundNetworkSignature; | 72 CHROMEOS_EXPORT extern const OncValueSignature kCellularFoundNetworkSignature; |
71 CHROMEOS_EXPORT extern const OncValueSignature kSIMLockStatusSignature; | 73 CHROMEOS_EXPORT extern const OncValueSignature kSIMLockStatusSignature; |
72 | 74 |
73 } // namespace onc | 75 } // namespace onc |
74 } // namespace chromeos | 76 } // namespace chromeos |
75 | 77 |
76 #endif // CHROMEOS_NETWORK_ONC_ONC_SIGNATURE_H_ | 78 #endif // CHROMEOS_NETWORK_ONC_ONC_SIGNATURE_H_ |
OLD | NEW |