| 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 #ifndef COMPONENTS_ONC_ONC_CONSTANTS_H_ | 4 #ifndef COMPONENTS_ONC_ONC_CONSTANTS_H_ |
| 5 #define COMPONENTS_ONC_ONC_CONSTANTS_H_ | 5 #define COMPONENTS_ONC_ONC_CONSTANTS_H_ |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "components/onc/onc_export.h" | 9 #include "components/onc/onc_export.h" |
| 10 | 10 |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 // The one of different setting sources (user/device policy, user/shared | 30 // The one of different setting sources (user/device policy, user/shared |
| 31 // settings) that has highest priority over the others. | 31 // settings) that has highest priority over the others. |
| 32 ONC_EXPORT extern const char kAugmentationEffectiveSetting[]; | 32 ONC_EXPORT extern const char kAugmentationEffectiveSetting[]; |
| 33 ONC_EXPORT extern const char kAugmentationUserPolicy[]; | 33 ONC_EXPORT extern const char kAugmentationUserPolicy[]; |
| 34 ONC_EXPORT extern const char kAugmentationDevicePolicy[]; | 34 ONC_EXPORT extern const char kAugmentationDevicePolicy[]; |
| 35 ONC_EXPORT extern const char kAugmentationUserSetting[]; | 35 ONC_EXPORT extern const char kAugmentationUserSetting[]; |
| 36 ONC_EXPORT extern const char kAugmentationSharedSetting[]; | 36 ONC_EXPORT extern const char kAugmentationSharedSetting[]; |
| 37 ONC_EXPORT extern const char kAugmentationUserEditable[]; | 37 ONC_EXPORT extern const char kAugmentationUserEditable[]; |
| 38 ONC_EXPORT extern const char kAugmentationDeviceEditable[]; | 38 ONC_EXPORT extern const char kAugmentationDeviceEditable[]; |
| 39 | 39 |
| 40 // Special key for indicating that the Effective value is the Active value |
| 41 // and was set by an extension. Used for ProxySettings. |
| 42 ONC_EXPORT extern const char kAugmentationActiveExtension[]; |
| 43 |
| 40 // Common keys/values. | 44 // Common keys/values. |
| 41 ONC_EXPORT extern const char kRecommended[]; | 45 ONC_EXPORT extern const char kRecommended[]; |
| 42 ONC_EXPORT extern const char kRemove[]; | 46 ONC_EXPORT extern const char kRemove[]; |
| 43 | 47 |
| 44 // Top Level Configuration | 48 // Top Level Configuration |
| 45 namespace toplevel_config { | 49 namespace toplevel_config { |
| 46 ONC_EXPORT extern const char kCertificates[]; | 50 ONC_EXPORT extern const char kCertificates[]; |
| 47 ONC_EXPORT extern const char kEncryptedConfiguration[]; | 51 ONC_EXPORT extern const char kEncryptedConfiguration[]; |
| 48 ONC_EXPORT extern const char kNetworkConfigurations[]; | 52 ONC_EXPORT extern const char kNetworkConfigurations[]; |
| 49 ONC_EXPORT extern const char kGlobalNetworkConfiguration[]; | 53 ONC_EXPORT extern const char kGlobalNetworkConfiguration[]; |
| (...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 438 namespace device_state { | 442 namespace device_state { |
| 439 ONC_EXPORT extern const char kUninitialized[]; | 443 ONC_EXPORT extern const char kUninitialized[]; |
| 440 ONC_EXPORT extern const char kDisabled[]; | 444 ONC_EXPORT extern const char kDisabled[]; |
| 441 ONC_EXPORT extern const char kEnabling[]; | 445 ONC_EXPORT extern const char kEnabling[]; |
| 442 ONC_EXPORT extern const char kEnabled[]; | 446 ONC_EXPORT extern const char kEnabled[]; |
| 443 } // device_state | 447 } // device_state |
| 444 | 448 |
| 445 } // namespace onc | 449 } // namespace onc |
| 446 | 450 |
| 447 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_ | 451 #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_ |
| OLD | NEW |