| 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 396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 407 namespace substitutes { | 407 namespace substitutes { |
| 408 const char kLoginIDField[] = "${LOGIN_ID}"; | 408 const char kLoginIDField[] = "${LOGIN_ID}"; |
| 409 const char kEmailField[] = "${LOGIN_EMAIL}"; | 409 const char kEmailField[] = "${LOGIN_EMAIL}"; |
| 410 } // namespace substitutes | 410 } // namespace substitutes |
| 411 | 411 |
| 412 namespace global_network_config { | 412 namespace global_network_config { |
| 413 const char kAllowOnlyPolicyNetworksToAutoconnect[] = | 413 const char kAllowOnlyPolicyNetworksToAutoconnect[] = |
| 414 "AllowOnlyPolicyNetworksToAutoconnect"; | 414 "AllowOnlyPolicyNetworksToAutoconnect"; |
| 415 } // global_network_config | 415 } // global_network_config |
| 416 | 416 |
| 417 namespace device_state { |
| 418 const char kUninitialized[] = "Uninitialized"; |
| 419 const char kDisabled[] = "Disabled"; |
| 420 const char kEnabling[] = "Enabling"; |
| 421 const char kEnabled[] = "Enabled"; |
| 422 } // device_state |
| 423 |
| 417 } // namespace onc | 424 } // namespace onc |
| OLD | NEW |