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

Unified Diff: chromeos/network/network_state.cc

Issue 383013002: Remove additional dependencies from InternetOptionsHandler (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rip out awkward debugging code Created 6 years, 5 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_state.h ('k') | chromeos/network/network_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/network/network_state.cc
diff --git a/chromeos/network/network_state.cc b/chromeos/network/network_state.cc
index 6ef536aad855a73946fdcd194a93530ebab5ede5..c528c431adf6a52d41b833cb74203d7a91217f10 100644
--- a/chromeos/network/network_state.cc
+++ b/chromeos/network/network_state.cc
@@ -102,15 +102,6 @@ bool NetworkState::PropertyChanged(const std::string& key,
return GetStringValue(key, value, &security_);
} else if (key == shill::kEapMethodProperty) {
return GetStringValue(key, value, &eap_method_);
- } else if (key == shill::kUIDataProperty) {
- scoped_ptr<NetworkUIData> new_ui_data =
- shill_property_util::GetUIDataFromValue(value);
- if (!new_ui_data) {
- NET_LOG_ERROR("Failed to parse " + key, path());
- return false;
- }
- ui_data_ = *new_ui_data;
- return true;
} else if (key == shill::kNetworkTechnologyProperty) {
return GetStringValue(key, value, &network_technology_);
} else if (key == shill::kDeviceProperty) {
« no previous file with comments | « chromeos/network/network_state.h ('k') | chromeos/network/network_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698