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 28 matching lines...) Expand all Loading... |
39 CHROMEOS_EXPORT extern const OncValueSignature kOpenVPNSignature; | 39 CHROMEOS_EXPORT extern const OncValueSignature kOpenVPNSignature; |
40 CHROMEOS_EXPORT extern const OncValueSignature kVPNSignature; | 40 CHROMEOS_EXPORT extern const OncValueSignature kVPNSignature; |
41 CHROMEOS_EXPORT extern const OncValueSignature kEthernetSignature; | 41 CHROMEOS_EXPORT extern const OncValueSignature kEthernetSignature; |
42 CHROMEOS_EXPORT extern const OncValueSignature kIPConfigSignature; | 42 CHROMEOS_EXPORT extern const OncValueSignature kIPConfigSignature; |
43 CHROMEOS_EXPORT extern const OncValueSignature kProxyLocationSignature; | 43 CHROMEOS_EXPORT extern const OncValueSignature kProxyLocationSignature; |
44 CHROMEOS_EXPORT extern const OncValueSignature kProxyManualSignature; | 44 CHROMEOS_EXPORT extern const OncValueSignature kProxyManualSignature; |
45 CHROMEOS_EXPORT extern const OncValueSignature kProxySettingsSignature; | 45 CHROMEOS_EXPORT extern const OncValueSignature kProxySettingsSignature; |
46 CHROMEOS_EXPORT extern const OncValueSignature kWiFiSignature; | 46 CHROMEOS_EXPORT extern const OncValueSignature kWiFiSignature; |
47 CHROMEOS_EXPORT extern const OncValueSignature kCertificateSignature; | 47 CHROMEOS_EXPORT extern const OncValueSignature kCertificateSignature; |
48 CHROMEOS_EXPORT extern const OncValueSignature kNetworkConfigurationSignature; | 48 CHROMEOS_EXPORT extern const OncValueSignature kNetworkConfigurationSignature; |
| 49 CHROMEOS_EXPORT extern const OncValueSignature kCertificateListSignature; |
49 CHROMEOS_EXPORT extern const OncValueSignature | 50 CHROMEOS_EXPORT extern const OncValueSignature |
50 kUnencryptedConfigurationSignature; | 51 kNetworkConfigurationListSignature; |
| 52 CHROMEOS_EXPORT extern const OncValueSignature kToplevelConfigurationSignature; |
51 | 53 |
52 } // namespace onc | 54 } // namespace onc |
53 } // namespace chromeos | 55 } // namespace chromeos |
54 | 56 |
55 #endif // CHROMEOS_NETWORK_ONC_ONC_SIGNATURE_H_ | 57 #endif // CHROMEOS_NETWORK_ONC_ONC_SIGNATURE_H_ |
OLD | NEW |