diff options
Diffstat (limited to 'components/onc')
-rw-r--r-- | components/onc/onc_constants.cc | 6 | ||||
-rw-r--r-- | components/onc/onc_constants.h | 5 |
2 files changed, 11 insertions, 0 deletions
diff --git a/components/onc/onc_constants.cc b/components/onc/onc_constants.cc index 7c6cfbd..04df0b4 100644 --- a/components/onc/onc_constants.cc +++ b/components/onc/onc_constants.cc @@ -26,6 +26,7 @@ namespace toplevel_config { const char kCertificates[] = "Certificates"; const char kEncryptedConfiguration[] = "EncryptedConfiguration"; const char kNetworkConfigurations[] = "NetworkConfigurations"; +const char kGlobalNetworkConfiguration[] = "GlobalNetworkConfiguration"; const char kType[] = "Type"; const char kUnencryptedConfiguration[] = "UnencryptedConfiguration"; } // namespace toplevel_config @@ -286,5 +287,10 @@ const char kLoginIDField[] = "${LOGIN_ID}"; const char kEmailField[] = "${LOGIN_EMAIL}"; } // namespace substitutes +namespace global_network_config { +const char kAllowOnlyPolicyNetworksToAutoconnect[] = + "AllowOnlyPolicyNetworksToAutoconnect"; +} // global_network_config + } // namespace onc diff --git a/components/onc/onc_constants.h b/components/onc/onc_constants.h index 17e748c..b114177 100644 --- a/components/onc/onc_constants.h +++ b/components/onc/onc_constants.h @@ -48,6 +48,7 @@ namespace toplevel_config { ONC_EXPORT extern const char kCertificates[]; ONC_EXPORT extern const char kEncryptedConfiguration[]; ONC_EXPORT extern const char kNetworkConfigurations[]; +ONC_EXPORT extern const char kGlobalNetworkConfiguration[]; ONC_EXPORT extern const char kType[]; ONC_EXPORT extern const char kUnencryptedConfiguration[]; } // namespace toplevel_config @@ -309,6 +310,10 @@ ONC_EXPORT extern const char kType[]; ONC_EXPORT extern const char kWPAD[]; } // namespace proxy +namespace global_network_config { +ONC_EXPORT extern const char kAllowOnlyPolicyNetworksToAutoconnect[]; +} // global_network_config + } // namespace onc #endif // COMPONENTS_ONC_ONC_CONSTANTS_H_ |