Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(64)

Side by Side Diff: components/onc/onc_constants.cc

Issue 105153002: Implement Networking Private API CreateNetwork function on Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added TODO to determine proper WAP encryption (AES vs TKIP) during Connect. Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « components/onc/onc_constants.h ('k') | components/wifi.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « components/onc/onc_constants.h ('k') | components/wifi.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698