| Index: chrome/browser/policy/device_policy_cache.cc
|
| diff --git a/chrome/browser/policy/device_policy_cache.cc b/chrome/browser/policy/device_policy_cache.cc
|
| index dab3f9183e4ef9c044c752ed749ad98f33bbb602..c626080e57f11e10f73dce9aac3b6cc5b636f76c 100644
|
| --- a/chrome/browser/policy/device_policy_cache.cc
|
| +++ b/chrome/browser/policy/device_policy_cache.cc
|
| @@ -353,10 +353,11 @@ void DevicePolicyCache::DecodeDevicePolicy(
|
| chromeos::CrosLibrary::Get()->GetUpdateLibrary()->SetReleaseTrack(channel);
|
| }
|
|
|
| - if (policy.has_network_configuration() &&
|
| - policy.network_configuration().has_network_configuration()) {
|
| - std::string config(policy.network_configuration().network_configuration());
|
| - mandatory->Set(kPolicyDeviceNetworkConfiguration,
|
| + if (policy.has_open_network_configuration() &&
|
| + policy.open_network_configuration().has_open_network_configuration()) {
|
| + std::string config(
|
| + policy.open_network_configuration().open_network_configuration());
|
| + mandatory->Set(kPolicyDeviceOpenNetworkConfiguration,
|
| Value::CreateStringValue(config));
|
| }
|
| }
|
|
|