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

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

Issue 578823003: Add Wimax to ONC. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
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 82df4d8011a3f49d089209deb54e15aa07f1fa83..2f8fa9c0ad42531f33a428a1d94bf0fe77e8f951 100644
--- a/chromeos/network/onc/onc_translation_tables.cc
+++ b/chromeos/network/onc/onc_translation_tables.cc
@@ -119,6 +119,11 @@ const FieldTranslationEntry wifi_fields[] = {
{ ::onc::wifi::kSignalStrength, shill::kSignalStrengthProperty},
{NULL}};
+const FieldTranslationEntry wimax_fields[] = {
+ { ::onc::wimax::kAutoConnect, shill::kAutoConnectProperty},
+ { ::onc::wimax::kSignalStrength, shill::kSignalStrengthProperty},
+ {NULL}};
+
const FieldTranslationEntry cellular_apn_fields[] = {
{ ::onc::cellular_apn::kAccessPointName, shill::kApnProperty},
{ ::onc::cellular_apn::kName, shill::kApnNameProperty},
@@ -226,6 +231,8 @@ const OncValueTranslationEntry onc_value_translation_table[] = {
{ &kVPNSignature, vpn_fields },
{ &kWiFiSignature, wifi_fields },
{ &kWiFiWithStateSignature, wifi_fields },
+ { &kWiMAXSignature, wimax_fields },
+ { &kWiMAXWithStateSignature, wimax_fields },
{ &kCellularApnSignature, cellular_apn_fields },
{ &kCellularFoundNetworkSignature, cellular_found_network_fields },
{ &kCellularProviderSignature, cellular_provider_fields },

Powered by Google App Engine
This is Rietveld 408576698