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

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

Issue 1091043002: Use networkingPrivate.startConnect (Take 2) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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/network_util.cc ('k') | chromeos/network/onc/onc_translator.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 285a7e11745a0fe82bb778d4488976709e8f209c..ad7eef81217ba4a42fa0791466ad9a29b78cfd37 100644
--- a/chromeos/network/onc/onc_translation_tables.cc
+++ b/chromeos/network/onc/onc_translation_tables.cc
@@ -187,24 +187,23 @@ const FieldTranslationEntry cellular_fields[] = {
const FieldTranslationEntry network_fields[] = {
{::onc::network_config::kGUID, shill::kGuidProperty},
{::onc::network_config::kConnectable, shill::kConnectableProperty},
- {::onc::network_config::kErrorState, shill::kErrorProperty},
{::onc::network_config::kPriority, shill::kPriorityProperty},
// Shill doesn't allow setting the name for non-VPN networks.
// Name is conditionally translated, see onc_translator_*.
- // { ::onc::network_config::kName, shill::kNameProperty },
+ // {::onc::network_config::kName, shill::kNameProperty },
// Type is converted during translation, see onc_translator_*.
- // { ::onc::network_config::kType, shill::kTypeProperty },
+ // {::onc::network_config::kType, shill::kTypeProperty },
// These fields are converted during translation, see
// onc_translator_shill_to_onc.cc. They are only converted when going from
// Shill->ONC, and ignored otherwise.
- // { ::onc::network_config::kConnectionState, shill::kStateProperty },
- // { ::onc::network_config::kRestrictedConnectivity,
- // shill::kStateProperty },
- // { ::onc::network_config::kSource, shill::kProfileProperty },
- // { ::onc::network_config::kMacAddress, shill::kAddressProperty },
+ // {::onc::network_config::kConnectionState, shill::kStateProperty },
+ // {::onc::network_config::kErrorState, shill::kErrorProperty},
+ // {::onc::network_config::kRestrictedConnectivity, shill::kStateProperty },
+ // {::onc::network_config::kSource, shill::kProfileProperty },
+ // {::onc::network_config::kMacAddress, shill::kAddressProperty },
{NULL}};
const FieldTranslationEntry ipconfig_fields[] = {
« no previous file with comments | « chromeos/network/network_util.cc ('k') | chromeos/network/onc/onc_translator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698