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 | 4 |
5 #include "components/onc/onc_constants.h" | 5 #include "components/onc/onc_constants.h" |
6 | 6 |
7 // Constants for ONC properties. | 7 // Constants for ONC properties. |
8 namespace onc { | 8 namespace onc { |
9 | 9 |
10 const char kAugmentationActiveSetting[] = "Active"; | 10 const char kAugmentationActiveSetting[] = "Active"; |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
133 const char kNone[] = "None"; | 133 const char kNone[] = "None"; |
134 const char kPassphrase[] = "Passphrase"; | 134 const char kPassphrase[] = "Passphrase"; |
135 const char kProxyURL[] = "ProxyURL"; | 135 const char kProxyURL[] = "ProxyURL"; |
136 const char kSSID[] = "SSID"; | 136 const char kSSID[] = "SSID"; |
137 const char kSecurity[] = "Security"; | 137 const char kSecurity[] = "Security"; |
138 const char kSignalStrength[] = "SignalStrength"; | 138 const char kSignalStrength[] = "SignalStrength"; |
139 const char kWEP_8021X[] = "WEP-8021X"; | 139 const char kWEP_8021X[] = "WEP-8021X"; |
140 const char kWEP_PSK[] = "WEP-PSK"; | 140 const char kWEP_PSK[] = "WEP-PSK"; |
141 const char kWPA_EAP[] = "WPA-EAP"; | 141 const char kWPA_EAP[] = "WPA-EAP"; |
142 const char kWPA_PSK[] = "WPA-PSK"; | 142 const char kWPA_PSK[] = "WPA-PSK"; |
| 143 const char kWPA2_PSK[] = "WPA2-PSK"; |
143 } // namespace wifi | 144 } // namespace wifi |
144 | 145 |
145 namespace certificate { | 146 namespace certificate { |
146 const char kAuthority[] = "Authority"; | 147 const char kAuthority[] = "Authority"; |
147 const char kClient[] = "Client"; | 148 const char kClient[] = "Client"; |
148 const char kCommonName[] = "CommonName"; | 149 const char kCommonName[] = "CommonName"; |
149 const char kEmailAddress[] = "EmailAddress"; | 150 const char kEmailAddress[] = "EmailAddress"; |
150 const char kEnrollmentURI[] = "EnrollmentURI"; | 151 const char kEnrollmentURI[] = "EnrollmentURI"; |
151 const char kGUID[] = "GUID"; | 152 const char kGUID[] = "GUID"; |
152 const char kIssuerCARef[] = "IssuerCARef"; | 153 const char kIssuerCARef[] = "IssuerCARef"; |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
300 const char kEmailField[] = "${LOGIN_EMAIL}"; | 301 const char kEmailField[] = "${LOGIN_EMAIL}"; |
301 } // namespace substitutes | 302 } // namespace substitutes |
302 | 303 |
303 namespace global_network_config { | 304 namespace global_network_config { |
304 const char kAllowOnlyPolicyNetworksToAutoconnect[] = | 305 const char kAllowOnlyPolicyNetworksToAutoconnect[] = |
305 "AllowOnlyPolicyNetworksToAutoconnect"; | 306 "AllowOnlyPolicyNetworksToAutoconnect"; |
306 } // global_network_config | 307 } // global_network_config |
307 | 308 |
308 } // namespace onc | 309 } // namespace onc |
309 | 310 |
OLD | NEW |