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 kCertificatePatternSignature; | 40 CHROMEOS_EXPORT extern const OncValueSignature kCertificatePatternSignature; |
41 CHROMEOS_EXPORT extern const OncValueSignature kIPsecSignature; | 41 CHROMEOS_EXPORT extern const OncValueSignature kIPsecSignature; |
42 CHROMEOS_EXPORT extern const OncValueSignature kL2TPSignature; | 42 CHROMEOS_EXPORT extern const OncValueSignature kL2TPSignature; |
43 CHROMEOS_EXPORT extern const OncValueSignature kXAUTHSignature; | 43 CHROMEOS_EXPORT extern const OncValueSignature kXAUTHSignature; |
44 CHROMEOS_EXPORT extern const OncValueSignature kOpenVPNSignature; | 44 CHROMEOS_EXPORT extern const OncValueSignature kOpenVPNSignature; |
45 CHROMEOS_EXPORT extern const OncValueSignature kThirdPartyVPNSignature; | 45 CHROMEOS_EXPORT extern const OncValueSignature kThirdPartyVPNSignature; |
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 kTetherSignature; | 49 CHROMEOS_EXPORT extern const OncValueSignature kTetherSignature; |
| 50 CHROMEOS_EXPORT extern const OncValueSignature kTetherWithStateSignature; |
50 CHROMEOS_EXPORT extern const OncValueSignature kIPConfigSignature; | 51 CHROMEOS_EXPORT extern const OncValueSignature kIPConfigSignature; |
51 CHROMEOS_EXPORT extern const OncValueSignature kSavedIPConfigSignature; | 52 CHROMEOS_EXPORT extern const OncValueSignature kSavedIPConfigSignature; |
52 CHROMEOS_EXPORT extern const OncValueSignature kStaticIPConfigSignature; | 53 CHROMEOS_EXPORT extern const OncValueSignature kStaticIPConfigSignature; |
53 CHROMEOS_EXPORT extern const OncValueSignature kProxyLocationSignature; | 54 CHROMEOS_EXPORT extern const OncValueSignature kProxyLocationSignature; |
54 CHROMEOS_EXPORT extern const OncValueSignature kProxyManualSignature; | 55 CHROMEOS_EXPORT extern const OncValueSignature kProxyManualSignature; |
55 CHROMEOS_EXPORT extern const OncValueSignature kProxySettingsSignature; | 56 CHROMEOS_EXPORT extern const OncValueSignature kProxySettingsSignature; |
56 CHROMEOS_EXPORT extern const OncValueSignature kWiFiSignature; | 57 CHROMEOS_EXPORT extern const OncValueSignature kWiFiSignature; |
57 CHROMEOS_EXPORT extern const OncValueSignature kWiMAXSignature; | 58 CHROMEOS_EXPORT extern const OncValueSignature kWiMAXSignature; |
58 CHROMEOS_EXPORT extern const OncValueSignature kCertificateSignature; | 59 CHROMEOS_EXPORT extern const OncValueSignature kCertificateSignature; |
59 CHROMEOS_EXPORT extern const OncValueSignature kNetworkConfigurationSignature; | 60 CHROMEOS_EXPORT extern const OncValueSignature kNetworkConfigurationSignature; |
(...skipping 13 matching lines...) Expand all Loading... |
73 CHROMEOS_EXPORT extern const OncValueSignature kCellularPaymentPortalSignature; | 74 CHROMEOS_EXPORT extern const OncValueSignature kCellularPaymentPortalSignature; |
74 CHROMEOS_EXPORT extern const OncValueSignature kCellularProviderSignature; | 75 CHROMEOS_EXPORT extern const OncValueSignature kCellularProviderSignature; |
75 CHROMEOS_EXPORT extern const OncValueSignature kCellularApnSignature; | 76 CHROMEOS_EXPORT extern const OncValueSignature kCellularApnSignature; |
76 CHROMEOS_EXPORT extern const OncValueSignature kCellularFoundNetworkSignature; | 77 CHROMEOS_EXPORT extern const OncValueSignature kCellularFoundNetworkSignature; |
77 CHROMEOS_EXPORT extern const OncValueSignature kSIMLockStatusSignature; | 78 CHROMEOS_EXPORT extern const OncValueSignature kSIMLockStatusSignature; |
78 | 79 |
79 } // namespace onc | 80 } // namespace onc |
80 } // namespace chromeos | 81 } // namespace chromeos |
81 | 82 |
82 #endif // CHROMEOS_NETWORK_ONC_ONC_SIGNATURE_H_ | 83 #endif // CHROMEOS_NETWORK_ONC_ONC_SIGNATURE_H_ |
OLD | NEW |