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 382 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
393 namespace substitutes { | 393 namespace substitutes { |
394 const char kLoginIDField[] = "${LOGIN_ID}"; | 394 const char kLoginIDField[] = "${LOGIN_ID}"; |
395 const char kEmailField[] = "${LOGIN_EMAIL}"; | 395 const char kEmailField[] = "${LOGIN_EMAIL}"; |
396 } // namespace substitutes | 396 } // namespace substitutes |
397 | 397 |
398 namespace global_network_config { | 398 namespace global_network_config { |
399 const char kAllowOnlyPolicyNetworksToAutoconnect[] = | 399 const char kAllowOnlyPolicyNetworksToAutoconnect[] = |
400 "AllowOnlyPolicyNetworksToAutoconnect"; | 400 "AllowOnlyPolicyNetworksToAutoconnect"; |
401 } // global_network_config | 401 } // global_network_config |
402 | 402 |
| 403 namespace device_state { |
| 404 const char kUninitialized[] = "Uninitialized"; |
| 405 const char kDisabled[] = "Disabled"; |
| 406 const char kEnabling[] = "Enabling"; |
| 407 const char kEnabled[] = "Enabled"; |
| 408 } // device_state |
| 409 |
403 } // namespace onc | 410 } // namespace onc |
OLD | NEW |