| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #ifndef COMPONENTS_ONC_ONC_CONSTANTS_H_ | 4 #ifndef COMPONENTS_ONC_ONC_CONSTANTS_H_ |
| 5 #define COMPONENTS_ONC_ONC_CONSTANTS_H_ | 5 #define COMPONENTS_ONC_ONC_CONSTANTS_H_ |
| 6 | 6 |
| 7 #include "components/onc/onc_export.h" | 7 #include "components/onc/onc_export.h" |
| 8 | 8 |
| 9 // Constants for ONC properties. | 9 // Constants for ONC properties. |
| 10 namespace onc { | 10 namespace onc { |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 ONC_EXPORT extern const char kHiddenSSID[]; | 155 ONC_EXPORT extern const char kHiddenSSID[]; |
| 156 ONC_EXPORT extern const char kNone[]; | 156 ONC_EXPORT extern const char kNone[]; |
| 157 ONC_EXPORT extern const char kPassphrase[]; | 157 ONC_EXPORT extern const char kPassphrase[]; |
| 158 ONC_EXPORT extern const char kProxyURL[]; | 158 ONC_EXPORT extern const char kProxyURL[]; |
| 159 ONC_EXPORT extern const char kSSID[]; | 159 ONC_EXPORT extern const char kSSID[]; |
| 160 ONC_EXPORT extern const char kSecurity[]; | 160 ONC_EXPORT extern const char kSecurity[]; |
| 161 ONC_EXPORT extern const char kSignalStrength[]; | 161 ONC_EXPORT extern const char kSignalStrength[]; |
| 162 ONC_EXPORT extern const char kWEP_PSK[]; | 162 ONC_EXPORT extern const char kWEP_PSK[]; |
| 163 ONC_EXPORT extern const char kWEP_8021X[]; | 163 ONC_EXPORT extern const char kWEP_8021X[]; |
| 164 ONC_EXPORT extern const char kWPA_PSK[]; | 164 ONC_EXPORT extern const char kWPA_PSK[]; |
| 165 ONC_EXPORT extern const char kWPA2_PSK[]; |
| 165 ONC_EXPORT extern const char kWPA_EAP[]; | 166 ONC_EXPORT extern const char kWPA_EAP[]; |
| 166 } // namespace wifi | 167 } // namespace wifi |
| 167 | 168 |
| 168 namespace certificate { | 169 namespace certificate { |
| 169 ONC_EXPORT extern const char kAuthority[]; | 170 ONC_EXPORT extern const char kAuthority[]; |
| 170 ONC_EXPORT extern const char kClient[]; | 171 ONC_EXPORT extern const char kClient[]; |
| 171 ONC_EXPORT extern const char kCommonName[]; | 172 ONC_EXPORT extern const char kCommonName[]; |
| 172 ONC_EXPORT extern const char kEmailAddress[]; | 173 ONC_EXPORT extern const char kEmailAddress[]; |
| 173 ONC_EXPORT extern const char kEnrollmentURI[]; | 174 ONC_EXPORT extern const char kEnrollmentURI[]; |
| 174 ONC_EXPORT extern const char kGUID[]; | 175 ONC_EXPORT extern const char kGUID[]; |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 } // namespace proxy | 325 } // namespace proxy |
| 325 | 326 |
| 326 namespace global_network_config { | 327 namespace global_network_config { |
| 327 ONC_EXPORT extern const char kAllowOnlyPolicyNetworksToAutoconnect[]; | 328 ONC_EXPORT extern const char kAllowOnlyPolicyNetworksToAutoconnect[]; |
| 328 } // global_network_config | 329 } // global_network_config |
| 329 | 330 |
| 330 } // namespace onc | 331 } // namespace onc |
| 331 | 332 |
| 332 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_ | 333 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_ |
| 333 | 334 |
| OLD | NEW |