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

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

Issue 759663004: ONC: add support for non-utf-8 SSIDs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: adjusted onc_spec.html Created 6 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
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 #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 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 ONC_EXPORT extern const char k8021X[]; 194 ONC_EXPORT extern const char k8021X[];
195 } // namespace ethernet 195 } // namespace ethernet
196 196
197 namespace wifi { 197 namespace wifi {
198 ONC_EXPORT extern const char kAllowGatewayARPPolling[]; 198 ONC_EXPORT extern const char kAllowGatewayARPPolling[];
199 ONC_EXPORT extern const char kAutoConnect[]; 199 ONC_EXPORT extern const char kAutoConnect[];
200 ONC_EXPORT extern const char kBSSID[]; 200 ONC_EXPORT extern const char kBSSID[];
201 ONC_EXPORT extern const char kEAP[]; 201 ONC_EXPORT extern const char kEAP[];
202 ONC_EXPORT extern const char kFrequency[]; 202 ONC_EXPORT extern const char kFrequency[];
203 ONC_EXPORT extern const char kFrequencyList[]; 203 ONC_EXPORT extern const char kFrequencyList[];
204 ONC_EXPORT extern const char kHexSSID[];
204 ONC_EXPORT extern const char kHiddenSSID[]; 205 ONC_EXPORT extern const char kHiddenSSID[];
205 ONC_EXPORT extern const char kPassphrase[]; 206 ONC_EXPORT extern const char kPassphrase[];
206 ONC_EXPORT extern const char kSSID[]; 207 ONC_EXPORT extern const char kSSID[];
207 ONC_EXPORT extern const char kSecurity[]; 208 ONC_EXPORT extern const char kSecurity[];
208 ONC_EXPORT extern const char kSecurityNone[]; 209 ONC_EXPORT extern const char kSecurityNone[];
209 ONC_EXPORT extern const char kSignalStrength[]; 210 ONC_EXPORT extern const char kSignalStrength[];
210 ONC_EXPORT extern const char kWEP_PSK[]; 211 ONC_EXPORT extern const char kWEP_PSK[];
211 ONC_EXPORT extern const char kWEP_8021X[]; 212 ONC_EXPORT extern const char kWEP_8021X[];
212 ONC_EXPORT extern const char kWPA_PSK[]; 213 ONC_EXPORT extern const char kWPA_PSK[];
213 ONC_EXPORT extern const char kWPA2_PSK[]; 214 ONC_EXPORT extern const char kWPA2_PSK[];
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
392 ONC_EXPORT extern const char kWPAD[]; 393 ONC_EXPORT extern const char kWPAD[];
393 } // namespace proxy 394 } // namespace proxy
394 395
395 namespace global_network_config { 396 namespace global_network_config {
396 ONC_EXPORT extern const char kAllowOnlyPolicyNetworksToAutoconnect[]; 397 ONC_EXPORT extern const char kAllowOnlyPolicyNetworksToAutoconnect[];
397 } // global_network_config 398 } // global_network_config
398 399
399 } // namespace onc 400 } // namespace onc
400 401
401 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_ 402 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698