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 <string> | 7 #include <string> |
8 | 8 |
9 #include "components/onc/onc_export.h" | 9 #include "components/onc/onc_export.h" |
10 | 10 |
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
212 namespace wifi { | 212 namespace wifi { |
213 ONC_EXPORT extern const char kAllowGatewayARPPolling[]; | 213 ONC_EXPORT extern const char kAllowGatewayARPPolling[]; |
214 ONC_EXPORT extern const char kAutoConnect[]; | 214 ONC_EXPORT extern const char kAutoConnect[]; |
215 ONC_EXPORT extern const char kBSSID[]; | 215 ONC_EXPORT extern const char kBSSID[]; |
216 ONC_EXPORT extern const char kEAP[]; | 216 ONC_EXPORT extern const char kEAP[]; |
217 ONC_EXPORT extern const char kFrequency[]; | 217 ONC_EXPORT extern const char kFrequency[]; |
218 ONC_EXPORT extern const char kFrequencyList[]; | 218 ONC_EXPORT extern const char kFrequencyList[]; |
219 ONC_EXPORT extern const char kHexSSID[]; | 219 ONC_EXPORT extern const char kHexSSID[]; |
220 ONC_EXPORT extern const char kHiddenSSID[]; | 220 ONC_EXPORT extern const char kHiddenSSID[]; |
221 ONC_EXPORT extern const char kPassphrase[]; | 221 ONC_EXPORT extern const char kPassphrase[]; |
| 222 ONC_EXPORT extern const char kRoamThreshold[]; |
222 ONC_EXPORT extern const char kSSID[]; | 223 ONC_EXPORT extern const char kSSID[]; |
223 ONC_EXPORT extern const char kSecurity[]; | 224 ONC_EXPORT extern const char kSecurity[]; |
224 ONC_EXPORT extern const char kSecurityNone[]; | 225 ONC_EXPORT extern const char kSecurityNone[]; |
225 ONC_EXPORT extern const char kSignalStrength[]; | 226 ONC_EXPORT extern const char kSignalStrength[]; |
226 ONC_EXPORT extern const char kWEP_PSK[]; | 227 ONC_EXPORT extern const char kWEP_PSK[]; |
227 ONC_EXPORT extern const char kWEP_8021X[]; | 228 ONC_EXPORT extern const char kWEP_8021X[]; |
228 ONC_EXPORT extern const char kWPA_PSK[]; | 229 ONC_EXPORT extern const char kWPA_PSK[]; |
229 ONC_EXPORT extern const char kWPA2_PSK[]; | 230 ONC_EXPORT extern const char kWPA2_PSK[]; |
230 ONC_EXPORT extern const char kWPA_EAP[]; | 231 ONC_EXPORT extern const char kWPA_EAP[]; |
231 } // namespace wifi | 232 } // namespace wifi |
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
420 ONC_EXPORT extern const char kWPAD[]; | 421 ONC_EXPORT extern const char kWPAD[]; |
421 } // namespace proxy | 422 } // namespace proxy |
422 | 423 |
423 namespace global_network_config { | 424 namespace global_network_config { |
424 ONC_EXPORT extern const char kAllowOnlyPolicyNetworksToAutoconnect[]; | 425 ONC_EXPORT extern const char kAllowOnlyPolicyNetworksToAutoconnect[]; |
425 } // global_network_config | 426 } // global_network_config |
426 | 427 |
427 } // namespace onc | 428 } // namespace onc |
428 | 429 |
429 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_ | 430 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_ |
OLD | NEW |