| 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"; |
| 11 const char kAugmentationEffectiveSetting[] = "Effective"; | 11 const char kAugmentationEffectiveSetting[] = "Effective"; |
| 12 const char kAugmentationUserPolicy[] = "UserPolicy"; | 12 const char kAugmentationUserPolicy[] = "UserPolicy"; |
| 13 const char kAugmentationDevicePolicy[] = "DevicePolicy"; | 13 const char kAugmentationDevicePolicy[] = "DevicePolicy"; |
| 14 const char kAugmentationUserSetting[] = "UserSetting"; | 14 const char kAugmentationUserSetting[] = "UserSetting"; |
| 15 const char kAugmentationSharedSetting[] = "SharedSetting"; | 15 const char kAugmentationSharedSetting[] = "SharedSetting"; |
| 16 const char kAugmentationUserEditable[] = "UserEditable"; | 16 const char kAugmentationUserEditable[] = "UserEditable"; |
| 17 const char kAugmentationDeviceEditable[] = "DeviceEditable"; | 17 const char kAugmentationDeviceEditable[] = "DeviceEditable"; |
| 18 | 18 |
| 19 const char kAugmentationActiveExtension[] = "ActiveExtension"; |
| 20 |
| 19 // Common keys/values. | 21 // Common keys/values. |
| 20 const char kRecommended[] = "Recommended"; | 22 const char kRecommended[] = "Recommended"; |
| 21 const char kRemove[] = "Remove"; | 23 const char kRemove[] = "Remove"; |
| 22 | 24 |
| 23 // Top Level Configuration | 25 // Top Level Configuration |
| 24 namespace toplevel_config { | 26 namespace toplevel_config { |
| 25 const char kCertificates[] = "Certificates"; | 27 const char kCertificates[] = "Certificates"; |
| 26 const char kEncryptedConfiguration[] = "EncryptedConfiguration"; | 28 const char kEncryptedConfiguration[] = "EncryptedConfiguration"; |
| 27 const char kNetworkConfigurations[] = "NetworkConfigurations"; | 29 const char kNetworkConfigurations[] = "NetworkConfigurations"; |
| 28 const char kGlobalNetworkConfiguration[] = "GlobalNetworkConfiguration"; | 30 const char kGlobalNetworkConfiguration[] = "GlobalNetworkConfiguration"; |
| (...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 424 } // global_network_config | 426 } // global_network_config |
| 425 | 427 |
| 426 namespace device_state { | 428 namespace device_state { |
| 427 const char kUninitialized[] = "Uninitialized"; | 429 const char kUninitialized[] = "Uninitialized"; |
| 428 const char kDisabled[] = "Disabled"; | 430 const char kDisabled[] = "Disabled"; |
| 429 const char kEnabling[] = "Enabling"; | 431 const char kEnabling[] = "Enabling"; |
| 430 const char kEnabled[] = "Enabled"; | 432 const char kEnabled[] = "Enabled"; |
| 431 } // device_state | 433 } // device_state |
| 432 | 434 |
| 433 } // namespace onc | 435 } // namespace onc |
| OLD | NEW |