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 kAugmentationUnmanaged[] = "Unmanaged"; | |
13 const char kAugmentationUserPolicy[] = "UserPolicy"; | 12 const char kAugmentationUserPolicy[] = "UserPolicy"; |
14 const char kAugmentationDevicePolicy[] = "DevicePolicy"; | 13 const char kAugmentationDevicePolicy[] = "DevicePolicy"; |
15 const char kAugmentationUserSetting[] = "UserSetting"; | 14 const char kAugmentationUserSetting[] = "UserSetting"; |
16 const char kAugmentationSharedSetting[] = "SharedSetting"; | 15 const char kAugmentationSharedSetting[] = "SharedSetting"; |
17 const char kAugmentationUserEditable[] = "UserEditable"; | 16 const char kAugmentationUserEditable[] = "UserEditable"; |
18 const char kAugmentationDeviceEditable[] = "DeviceEditable"; | 17 const char kAugmentationDeviceEditable[] = "DeviceEditable"; |
19 | 18 |
20 // Common keys/values. | 19 // Common keys/values. |
21 const char kRecommended[] = "Recommended"; | 20 const char kRecommended[] = "Recommended"; |
22 const char kRemove[] = "Remove"; | 21 const char kRemove[] = "Remove"; |
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
345 const char kLoginIDField[] = "${LOGIN_ID}"; | 344 const char kLoginIDField[] = "${LOGIN_ID}"; |
346 const char kEmailField[] = "${LOGIN_EMAIL}"; | 345 const char kEmailField[] = "${LOGIN_EMAIL}"; |
347 } // namespace substitutes | 346 } // namespace substitutes |
348 | 347 |
349 namespace global_network_config { | 348 namespace global_network_config { |
350 const char kAllowOnlyPolicyNetworksToAutoconnect[] = | 349 const char kAllowOnlyPolicyNetworksToAutoconnect[] = |
351 "AllowOnlyPolicyNetworksToAutoconnect"; | 350 "AllowOnlyPolicyNetworksToAutoconnect"; |
352 } // global_network_config | 351 } // global_network_config |
353 | 352 |
354 } // namespace onc | 353 } // namespace onc |
OLD | NEW |