Chromium Code Reviews| Index: chromeos/network/onc/onc_normalizer.cc |
| diff --git a/chromeos/network/onc/onc_normalizer.cc b/chromeos/network/onc/onc_normalizer.cc |
| index f93882ffd9d4730e8a6c05886034fbc556455cd9..abe93e0a9bb96235b71234c19e269bf8cdb122c6 100644 |
| --- a/chromeos/network/onc/onc_normalizer.cc |
| +++ b/chromeos/network/onc/onc_normalizer.cc |
| @@ -9,6 +9,7 @@ |
| #include "base/logging.h" |
| #include "base/values.h" |
| #include "chromeos/network/onc/onc_signature.h" |
| +#include "chromeos/network/onc/onc_utils.h" |
| #include "components/onc/onc_constants.h" |
| namespace chromeos { |
| @@ -232,6 +233,7 @@ void Normalizer::NormalizeWiFi(base::DictionaryValue* wifi) { |
| RemoveEntryUnless(wifi, kEAP, security == kWEP_8021X || security == kWPA_EAP); |
| RemoveEntryUnless(wifi, kPassphrase, |
| security == kWEP_PSK || security == kWPA_PSK); |
| + FillInHexSSIDField(wifi); |
|
pneubeck (no reviews)
2014/11/26 10:15:33
check whether this should also be called after eve
cschuet (SLOW)
2014/11/27 11:03:58
Done.
|
| } |
| } // namespace onc |