| 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 #include "chromeos/network/onc/onc_constants.h" | 5 #include "chromeos/network/onc/onc_constants.h" |
| 6 | 6 |
| 7 namespace chromeos { | 7 namespace chromeos { |
| 8 | 8 |
| 9 // Constants for ONC properties. | 9 // Constants for ONC properties. |
| 10 namespace onc { | 10 namespace onc { |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 namespace wifi { | 114 namespace wifi { |
| 115 const char kAutoConnect[] = "AutoConnect"; | 115 const char kAutoConnect[] = "AutoConnect"; |
| 116 const char kBSSID[] = "BSSID"; | 116 const char kBSSID[] = "BSSID"; |
| 117 const char kEAP[] = "EAP"; | 117 const char kEAP[] = "EAP"; |
| 118 const char kHiddenSSID[] = "HiddenSSID"; | 118 const char kHiddenSSID[] = "HiddenSSID"; |
| 119 const char kNone[] = "None"; | 119 const char kNone[] = "None"; |
| 120 const char kPassphrase[] = "Passphrase"; | 120 const char kPassphrase[] = "Passphrase"; |
| 121 const char kProxyURL[] = "ProxyURL"; | 121 const char kProxyURL[] = "ProxyURL"; |
| 122 const char kSSID[] = "SSID"; | 122 const char kSSID[] = "SSID"; |
| 123 const char kSecurity[] = "Security"; | 123 const char kSecurity[] = "Security"; |
| 124 const char kSignalStrength[] = "SignalStrength"; |
| 125 const char kWEP_8021X[] = "WEP-8021X"; |
| 124 const char kWEP_PSK[] = "WEP-PSK"; | 126 const char kWEP_PSK[] = "WEP-PSK"; |
| 125 const char kWEP_8021X[] = "WEP-8021X"; | 127 const char kWPA_EAP[] = "WPA-EAP"; |
| 126 const char kWPA_PSK[] = "WPA-PSK"; | 128 const char kWPA_PSK[] = "WPA-PSK"; |
| 127 const char kWPA_EAP[] = "WPA-EAP"; | |
| 128 } // namespace wifi | 129 } // namespace wifi |
| 129 | 130 |
| 130 namespace certificate { | 131 namespace certificate { |
| 131 const char kAuthority[] = "Authority"; | 132 const char kAuthority[] = "Authority"; |
| 132 const char kClient[] = "Client"; | 133 const char kClient[] = "Client"; |
| 133 const char kCommonName[] = "CommonName"; | 134 const char kCommonName[] = "CommonName"; |
| 134 const char kEmailAddress[] = "EmailAddress"; | 135 const char kEmailAddress[] = "EmailAddress"; |
| 135 const char kEnrollmentURI[] = "EnrollmentURI"; | 136 const char kEnrollmentURI[] = "EnrollmentURI"; |
| 136 const char kGUID[] = "GUID"; | 137 const char kGUID[] = "GUID"; |
| 137 const char kIssuerCARef[] = "IssuerCARef"; | 138 const char kIssuerCARef[] = "IssuerCARef"; |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 } // namespace proxy | 261 } // namespace proxy |
| 261 | 262 |
| 262 namespace substitutes { | 263 namespace substitutes { |
| 263 const char kLoginIDField[] = "${LOGIN_ID}"; | 264 const char kLoginIDField[] = "${LOGIN_ID}"; |
| 264 const char kEmailField[] = "${LOGIN_EMAIL}"; | 265 const char kEmailField[] = "${LOGIN_EMAIL}"; |
| 265 } // namespace substitutes | 266 } // namespace substitutes |
| 266 | 267 |
| 267 } // namespace onc | 268 } // namespace onc |
| 268 | 269 |
| 269 } // namespace chromeos | 270 } // namespace chromeos |
| OLD | NEW |