| 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 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 const char kXAUTH[] = "XAUTH"; | 252 const char kXAUTH[] = "XAUTH"; |
| 253 } // namespace ipsec | 253 } // namespace ipsec |
| 254 | 254 |
| 255 namespace openvpn { | 255 namespace openvpn { |
| 256 const char kAuthNoCache[] = "AuthNoCache"; | 256 const char kAuthNoCache[] = "AuthNoCache"; |
| 257 const char kAuthRetry[] = "AuthRetry"; | 257 const char kAuthRetry[] = "AuthRetry"; |
| 258 const char kAuth[] = "Auth"; | 258 const char kAuth[] = "Auth"; |
| 259 const char kCipher[] = "Cipher"; | 259 const char kCipher[] = "Cipher"; |
| 260 const char kCompLZO[] = "CompLZO"; | 260 const char kCompLZO[] = "CompLZO"; |
| 261 const char kCompNoAdapt[] = "CompNoAdapt"; | 261 const char kCompNoAdapt[] = "CompNoAdapt"; |
| 262 const char kIgnoreDefaultRoute[] = "IgnoreDefaultRoute"; |
| 262 const char kInteract[] = "interact"; | 263 const char kInteract[] = "interact"; |
| 263 const char kKeyDirection[] = "KeyDirection"; | 264 const char kKeyDirection[] = "KeyDirection"; |
| 264 const char kNoInteract[] = "nointeract"; | 265 const char kNoInteract[] = "nointeract"; |
| 265 const char kNone[] = "none"; | 266 const char kNone[] = "none"; |
| 266 const char kNsCertType[] = "NsCertType"; | 267 const char kNsCertType[] = "NsCertType"; |
| 267 const char kPort[] = "Port"; | 268 const char kPort[] = "Port"; |
| 268 const char kProto[] = "Proto"; | 269 const char kProto[] = "Proto"; |
| 269 const char kPushPeerInfo[] = "PushPeerInfo"; | 270 const char kPushPeerInfo[] = "PushPeerInfo"; |
| 270 const char kRemoteCertEKU[] = "RemoteCertEKU"; | 271 const char kRemoteCertEKU[] = "RemoteCertEKU"; |
| 271 const char kRemoteCertKU[] = "RemoteCertKU"; | 272 const char kRemoteCertKU[] = "RemoteCertKU"; |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 317 const char kLoginIDField[] = "${LOGIN_ID}"; | 318 const char kLoginIDField[] = "${LOGIN_ID}"; |
| 318 const char kEmailField[] = "${LOGIN_EMAIL}"; | 319 const char kEmailField[] = "${LOGIN_EMAIL}"; |
| 319 } // namespace substitutes | 320 } // namespace substitutes |
| 320 | 321 |
| 321 namespace global_network_config { | 322 namespace global_network_config { |
| 322 const char kAllowOnlyPolicyNetworksToAutoconnect[] = | 323 const char kAllowOnlyPolicyNetworksToAutoconnect[] = |
| 323 "AllowOnlyPolicyNetworksToAutoconnect"; | 324 "AllowOnlyPolicyNetworksToAutoconnect"; |
| 324 } // global_network_config | 325 } // global_network_config |
| 325 | 326 |
| 326 } // namespace onc | 327 } // namespace onc |
| OLD | NEW |