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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 const char kSIMLockStatus[] = "SIMLockStatus"; | 88 const char kSIMLockStatus[] = "SIMLockStatus"; |
89 const char kSIMPresent[] = "SIMPresent"; | 89 const char kSIMPresent[] = "SIMPresent"; |
90 const char kSupportedCarriers[] = "SupportedCarriers"; | 90 const char kSupportedCarriers[] = "SupportedCarriers"; |
91 const char kSupportNetworkScan[] = "SupportNetworkScan"; | 91 const char kSupportNetworkScan[] = "SupportNetworkScan"; |
92 } // namespace cellular | 92 } // namespace cellular |
93 | 93 |
94 namespace connection_state { | 94 namespace connection_state { |
95 const char kConnected[] = "Connected"; | 95 const char kConnected[] = "Connected"; |
96 const char kConnecting[] = "Connecting"; | 96 const char kConnecting[] = "Connecting"; |
97 const char kNotConnected[] = "NotConnected"; | 97 const char kNotConnected[] = "NotConnected"; |
98 } // namespace status | 98 } // namespace connection_state |
99 | 99 |
100 namespace ethernet { | 100 namespace ethernet { |
101 const char kAuthentication[] = "Authentication"; | 101 const char kAuthentication[] = "Authentication"; |
102 const char kEAP[] = "EAP"; | 102 const char kEAP[] = "EAP"; |
103 const char kNone[] = "None"; | 103 const char kNone[] = "None"; |
104 const char k8021X[] = "8021X"; | 104 const char k8021X[] = "8021X"; |
105 } // namespace ethernet | 105 } // namespace ethernet |
106 | 106 |
107 namespace ipconfig { | 107 namespace ipconfig { |
108 const char kGateway[] = "Gateway"; | 108 const char kGateway[] = "Gateway"; |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 const char kIdentity[] = "Identity"; | 183 const char kIdentity[] = "Identity"; |
184 const char kInner[] = "Inner"; | 184 const char kInner[] = "Inner"; |
185 const char kLEAP[] = "LEAP"; | 185 const char kLEAP[] = "LEAP"; |
186 const char kMD5[] = "MD5"; | 186 const char kMD5[] = "MD5"; |
187 const char kMSCHAPv2[] = "MSCHAPv2"; | 187 const char kMSCHAPv2[] = "MSCHAPv2"; |
188 const char kOuter[] = "Outer"; | 188 const char kOuter[] = "Outer"; |
189 const char kPAP[] = "PAP"; | 189 const char kPAP[] = "PAP"; |
190 const char kPEAP[] = "PEAP"; | 190 const char kPEAP[] = "PEAP"; |
191 const char kPassword[] = "Password"; | 191 const char kPassword[] = "Password"; |
192 const char kSaveCredentials[] = "SaveCredentials"; | 192 const char kSaveCredentials[] = "SaveCredentials"; |
| 193 const char kServerCAFingerprint[] = "ServerCAFingerprint"; |
193 const char kServerCARef[] = "ServerCARef"; | 194 const char kServerCARef[] = "ServerCARef"; |
194 const char kUseSystemCAs[] = "UseSystemCAs"; | 195 const char kUseSystemCAs[] = "UseSystemCAs"; |
195 } // namespace eap | 196 } // namespace eap |
196 | 197 |
197 namespace vpn { | 198 namespace vpn { |
198 const char kAuthNoCache[] = "AuthNoCache"; | 199 const char kAuthNoCache[] = "AuthNoCache"; |
199 const char kAuthRetry[] = "AuthRetry"; | 200 const char kAuthRetry[] = "AuthRetry"; |
200 const char kAuth[] = "Auth"; | 201 const char kAuth[] = "Auth"; |
201 const char kAuthenticationType[] = "AuthenticationType"; | 202 const char kAuthenticationType[] = "AuthenticationType"; |
202 const char kAutoConnect[] = "AutoConnect"; | 203 const char kAutoConnect[] = "AutoConnect"; |
(...skipping 16 matching lines...) Expand all Loading... |
219 const char kPSK[] = "PSK"; | 220 const char kPSK[] = "PSK"; |
220 const char kPassword[] = "Password"; | 221 const char kPassword[] = "Password"; |
221 const char kPort[] = "Port"; | 222 const char kPort[] = "Port"; |
222 const char kProto[] = "Proto"; | 223 const char kProto[] = "Proto"; |
223 const char kPushPeerInfo[] = "PushPeerInfo"; | 224 const char kPushPeerInfo[] = "PushPeerInfo"; |
224 const char kRemoteCertEKU[] = "RemoteCertEKU"; | 225 const char kRemoteCertEKU[] = "RemoteCertEKU"; |
225 const char kRemoteCertKU[] = "RemoteCertKU"; | 226 const char kRemoteCertKU[] = "RemoteCertKU"; |
226 const char kRemoteCertTLS[] = "RemoteCertTLS"; | 227 const char kRemoteCertTLS[] = "RemoteCertTLS"; |
227 const char kRenegSec[] = "RenegSec"; | 228 const char kRenegSec[] = "RenegSec"; |
228 const char kSaveCredentials[] = "SaveCredentials"; | 229 const char kSaveCredentials[] = "SaveCredentials"; |
| 230 const char kServerCAFingerprint[] = "ServerCAFingerprint"; |
229 const char kServerCARef[] = "ServerCARef"; | 231 const char kServerCARef[] = "ServerCARef"; |
| 232 const char kServerCertFingerprint[] = "ServerCertFingerprint"; |
230 const char kServerCertRef[] = "ServerCertRef"; | 233 const char kServerCertRef[] = "ServerCertRef"; |
231 const char kServerPollTimeout[] = "ServerPollTimeout"; | 234 const char kServerPollTimeout[] = "ServerPollTimeout"; |
232 const char kShaper[] = "Shaper"; | 235 const char kShaper[] = "Shaper"; |
233 const char kStaticChallenge[] = "StaticChallenge"; | 236 const char kStaticChallenge[] = "StaticChallenge"; |
234 const char kTLSAuthContents[] = "TLSAuthContents"; | 237 const char kTLSAuthContents[] = "TLSAuthContents"; |
235 const char kTLSRemote[] = "TLSRemote"; | 238 const char kTLSRemote[] = "TLSRemote"; |
236 const char kTypeL2TP_IPsec[] = "L2TP-IPsec"; | 239 const char kTypeL2TP_IPsec[] = "L2TP-IPsec"; |
237 const char kType[] = "Type"; | 240 const char kType[] = "Type"; |
238 const char kUsername[] = "Username"; | 241 const char kUsername[] = "Username"; |
239 const char kVerb[] = "Verb"; | 242 const char kVerb[] = "Verb"; |
(...skipping 23 matching lines...) Expand all Loading... |
263 } // namespace proxy | 266 } // namespace proxy |
264 | 267 |
265 namespace substitutes { | 268 namespace substitutes { |
266 const char kLoginIDField[] = "${LOGIN_ID}"; | 269 const char kLoginIDField[] = "${LOGIN_ID}"; |
267 const char kEmailField[] = "${LOGIN_EMAIL}"; | 270 const char kEmailField[] = "${LOGIN_EMAIL}"; |
268 } // namespace substitutes | 271 } // namespace substitutes |
269 | 272 |
270 } // namespace onc | 273 } // namespace onc |
271 | 274 |
272 } // namespace chromeos | 275 } // namespace chromeos |
OLD | NEW |