| Index: chrome/browser/chromeos/policy/user_network_configuration_updater.cc
|
| diff --git a/chrome/browser/chromeos/policy/user_network_configuration_updater.cc b/chrome/browser/chromeos/policy/user_network_configuration_updater.cc
|
| index 990f5bd743998b14db6b752fcc4dc676451e5325..49c2552ded99d32337fc11d173e004524e360862 100644
|
| --- a/chrome/browser/chromeos/policy/user_network_configuration_updater.cc
|
| +++ b/chrome/browser/chromeos/policy/user_network_configuration_updater.cc
|
| @@ -76,12 +76,15 @@ void UserNetworkConfigurationUpdater::ImportCertificates(
|
| }
|
|
|
| void UserNetworkConfigurationUpdater::ApplyNetworkPolicy(
|
| - base::ListValue* network_configs_onc) {
|
| + base::ListValue* network_configs_onc,
|
| + base::DictionaryValue* global_network_config) {
|
| DCHECK(user_);
|
| chromeos::onc::ExpandStringPlaceholdersInNetworksForUser(user_,
|
| network_configs_onc);
|
| - network_config_handler_->SetPolicy(
|
| - onc_source_, user_->username_hash(), *network_configs_onc);
|
| + network_config_handler_->SetPolicy(onc_source_,
|
| + user_->username_hash(),
|
| + *network_configs_onc,
|
| + *global_network_config);
|
| }
|
|
|
| void UserNetworkConfigurationUpdater::SetTrustAnchors() {
|
|
|