| 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 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 404 const char kPAC[] = "PAC"; | 404 const char kPAC[] = "PAC"; |
| 405 const char kPort[] = "Port"; | 405 const char kPort[] = "Port"; |
| 406 const char kSocks[] = "SOCKS"; | 406 const char kSocks[] = "SOCKS"; |
| 407 const char kType[] = "Type"; | 407 const char kType[] = "Type"; |
| 408 const char kWPAD[] = "WPAD"; | 408 const char kWPAD[] = "WPAD"; |
| 409 } // namespace proxy | 409 } // namespace proxy |
| 410 | 410 |
| 411 namespace substitutes { | 411 namespace substitutes { |
| 412 const char kLoginIDField[] = "${LOGIN_ID}"; | 412 const char kLoginIDField[] = "${LOGIN_ID}"; |
| 413 const char kEmailField[] = "${LOGIN_EMAIL}"; | 413 const char kEmailField[] = "${LOGIN_EMAIL}"; |
| 414 const char kCertSANEmail[] = "${CERT_SAN_EMAIL}"; |
| 415 const char kCertSANUPN[] = "${CERT_SAN_UPN}"; |
| 414 } // namespace substitutes | 416 } // namespace substitutes |
| 415 | 417 |
| 416 namespace global_network_config { | 418 namespace global_network_config { |
| 417 const char kAllowOnlyPolicyNetworksToAutoconnect[] = | 419 const char kAllowOnlyPolicyNetworksToAutoconnect[] = |
| 418 "AllowOnlyPolicyNetworksToAutoconnect"; | 420 "AllowOnlyPolicyNetworksToAutoconnect"; |
| 419 const char kAllowOnlyPolicyNetworksToConnect[] = | 421 const char kAllowOnlyPolicyNetworksToConnect[] = |
| 420 "AllowOnlyPolicyNetworksToConnect"; | 422 "AllowOnlyPolicyNetworksToConnect"; |
| 421 const char kDisableNetworkTypes[] = "DisableNetworkTypes"; | 423 const char kDisableNetworkTypes[] = "DisableNetworkTypes"; |
| 422 } // global_network_config | 424 } // global_network_config |
| 423 | 425 |
| 424 namespace device_state { | 426 namespace device_state { |
| 425 const char kUninitialized[] = "Uninitialized"; | 427 const char kUninitialized[] = "Uninitialized"; |
| 426 const char kDisabled[] = "Disabled"; | 428 const char kDisabled[] = "Disabled"; |
| 427 const char kEnabling[] = "Enabling"; | 429 const char kEnabling[] = "Enabling"; |
| 428 const char kEnabled[] = "Enabled"; | 430 const char kEnabled[] = "Enabled"; |
| 429 } // device_state | 431 } // device_state |
| 430 | 432 |
| 431 } // namespace onc | 433 } // namespace onc |
| OLD | NEW |