| 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 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 290 } // namespace encrypted | 290 } // namespace encrypted |
| 291 | 291 |
| 292 namespace eap { | 292 namespace eap { |
| 293 ONC_EXPORT extern const char kAnonymousIdentity[]; | 293 ONC_EXPORT extern const char kAnonymousIdentity[]; |
| 294 ONC_EXPORT extern const char kAutomatic[]; | 294 ONC_EXPORT extern const char kAutomatic[]; |
| 295 ONC_EXPORT extern const char kEAP_AKA[]; | 295 ONC_EXPORT extern const char kEAP_AKA[]; |
| 296 ONC_EXPORT extern const char kEAP_FAST[]; | 296 ONC_EXPORT extern const char kEAP_FAST[]; |
| 297 ONC_EXPORT extern const char kEAP_SIM[]; | 297 ONC_EXPORT extern const char kEAP_SIM[]; |
| 298 ONC_EXPORT extern const char kEAP_TLS[]; | 298 ONC_EXPORT extern const char kEAP_TLS[]; |
| 299 ONC_EXPORT extern const char kEAP_TTLS[]; | 299 ONC_EXPORT extern const char kEAP_TTLS[]; |
| 300 ONC_EXPORT extern const char kGTC[]; |
| 300 ONC_EXPORT extern const char kIdentity[]; | 301 ONC_EXPORT extern const char kIdentity[]; |
| 301 ONC_EXPORT extern const char kInner[]; | 302 ONC_EXPORT extern const char kInner[]; |
| 302 ONC_EXPORT extern const char kLEAP[]; | 303 ONC_EXPORT extern const char kLEAP[]; |
| 303 ONC_EXPORT extern const char kMD5[]; | 304 ONC_EXPORT extern const char kMD5[]; |
| 304 ONC_EXPORT extern const char kMSCHAPv2[]; | 305 ONC_EXPORT extern const char kMSCHAPv2[]; |
| 305 ONC_EXPORT extern const char kOuter[]; | 306 ONC_EXPORT extern const char kOuter[]; |
| 306 ONC_EXPORT extern const char kPAP[]; | 307 ONC_EXPORT extern const char kPAP[]; |
| 307 ONC_EXPORT extern const char kPEAP[]; | 308 ONC_EXPORT extern const char kPEAP[]; |
| 308 ONC_EXPORT extern const char kPassword[]; | 309 ONC_EXPORT extern const char kPassword[]; |
| 309 ONC_EXPORT extern const char kSaveCredentials[]; | 310 ONC_EXPORT extern const char kSaveCredentials[]; |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 436 namespace device_state { | 437 namespace device_state { |
| 437 ONC_EXPORT extern const char kUninitialized[]; | 438 ONC_EXPORT extern const char kUninitialized[]; |
| 438 ONC_EXPORT extern const char kDisabled[]; | 439 ONC_EXPORT extern const char kDisabled[]; |
| 439 ONC_EXPORT extern const char kEnabling[]; | 440 ONC_EXPORT extern const char kEnabling[]; |
| 440 ONC_EXPORT extern const char kEnabled[]; | 441 ONC_EXPORT extern const char kEnabled[]; |
| 441 } // device_state | 442 } // device_state |
| 442 | 443 |
| 443 } // namespace onc | 444 } // namespace onc |
| 444 | 445 |
| 445 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_ | 446 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_ |
| OLD | NEW |