Chromium Code Reviews| Index: chromeos/network/onc/onc_translation_tables.cc |
| diff --git a/chromeos/network/onc/onc_translation_tables.cc b/chromeos/network/onc/onc_translation_tables.cc |
| index 2f8fa9c0ad42531f33a428a1d94bf0fe77e8f951..30ccd9dcc930ba1c9a51b5834fb799a94719619f 100644 |
| --- a/chromeos/network/onc/onc_translation_tables.cc |
| +++ b/chromeos/network/onc/onc_translation_tables.cc |
| @@ -108,6 +108,8 @@ const FieldTranslationEntry vpn_fields[] = { |
| const FieldTranslationEntry wifi_fields[] = { |
| { ::onc::wifi::kAutoConnect, shill::kAutoConnectProperty}, |
| { ::onc::wifi::kBSSID, shill::kWifiBSsid}, |
| + // This dictionary is converted during translation, see onc_translator_*. |
|
pneubeck (no reviews)
2014/09/19 07:39:23
usually, I didn't list dictionaries. but I'm ok wi
stevenjb
2014/09/19 17:37:20
Hmm, you're right, we don't, but... this was the f
pneubeck (no reviews)
2014/09/19 17:44:23
sounds good.
|
| + // { ::onc::wifi::kEAP, shill::kEap*}, |
| { ::onc::wifi::kFrequency, shill::kWifiFrequency}, |
| { ::onc::wifi::kFrequencyList, shill::kWifiFrequencyListProperty}, |
| { ::onc::wifi::kHiddenSSID, shill::kWifiHiddenSsid}, |
| @@ -121,6 +123,8 @@ const FieldTranslationEntry wifi_fields[] = { |
| const FieldTranslationEntry wimax_fields[] = { |
| { ::onc::wimax::kAutoConnect, shill::kAutoConnectProperty}, |
| + // This dictionary is converted during translation, see onc_translator_*. |
| + // { ::onc::wimax::kEAP, shill::kEap*}, |
| { ::onc::wimax::kSignalStrength, shill::kSignalStrengthProperty}, |
| {NULL}}; |