Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(191)

Unified Diff: chromeos/network/onc/onc_translation_tables.cc

Issue 12676017: Adding policy support to the new network configuration stack. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed clang errors. Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chromeos/network/onc/onc_signature.cc ('k') | chromeos/network/onc/onc_utils.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 74a2f94cd0577e4940adbce9869597823262da60..8496aebf9c300ba11e9b64ad8b0ae9d3495ecdd5 100644
--- a/chromeos/network/onc/onc_translation_tables.cc
+++ b/chromeos/network/onc/onc_translation_tables.cc
@@ -190,11 +190,13 @@ const StringTranslationEntry kVPNTypeTable[] = {
{ NULL }
};
+// The first matching line is chosen.
const StringTranslationEntry kWiFiSecurityTable[] = {
{ wifi::kNone, flimflam::kSecurityNone },
{ wifi::kWEP_PSK, flimflam::kSecurityWep },
{ wifi::kWPA_PSK, flimflam::kSecurityPsk },
{ wifi::kWPA_EAP, flimflam::kSecurity8021x },
+ { wifi::kWPA_PSK, flimflam::kSecurityRsn },
{ NULL }
};
« no previous file with comments | « chromeos/network/onc/onc_signature.cc ('k') | chromeos/network/onc/onc_utils.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698