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

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: 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
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) {

Powered by Google App Engine
This is Rietveld 408576698