summaryrefslogtreecommitdiffstats
path: root/chromeos/network/network_configuration_handler.cc
diff options
context:
space:
mode:
authorstevenjb@chromium.org <stevenjb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-03 10:45:58 +0000
committerstevenjb@chromium.org <stevenjb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-03 10:45:58 +0000
commitce21fc613336439b575823b7e223b3bf9f36da0c (patch)
tree1a7ccf12cd2a74f2b352acc8ac9a6acde9aefef6 /chromeos/network/network_configuration_handler.cc
parent4b95f6f0055436bb5d33091182a4f58df9d6501d (diff)
downloadchromium_src-ce21fc613336439b575823b7e223b3bf9f36da0c.zip
chromium_src-ce21fc613336439b575823b7e223b3bf9f36da0c.tar.gz
chromium_src-ce21fc613336439b575823b7e223b3bf9f36da0c.tar.bz2
Support network Favorite/Preferred list and removal
This CL tracks Manager.ServiceCompleteList to provide a list of favorite/preferred networks to the UI. It uses Service.GetLoadableProfileEntries to remove preferred services. A test UI is provided in the status area (behind a flag). Stub behavior is updated to enable testing the UI on Linux. BUG=251922 Review URL: https://chromiumcodereview.appspot.com/17778003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@209950 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chromeos/network/network_configuration_handler.cc')
-rw-r--r--chromeos/network/network_configuration_handler.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chromeos/network/network_configuration_handler.cc b/chromeos/network/network_configuration_handler.cc
index 812aa5f..1a5ba93 100644
--- a/chromeos/network/network_configuration_handler.cc
+++ b/chromeos/network/network_configuration_handler.cc
@@ -184,8 +184,8 @@ class NetworkConfigurationHandler::ProfileEntryDeleter
// Run the callback if this is the last pending deletion.
if (!callback_.is_null())
callback_.Run();
- // TODO(stevenjb): Request NetworkStateHandler manager update to update
- // ServiceCompleteList once FavoriteStates are implemented.
+ // Request NetworkStateHandler manager update to update ServiceCompleteList.
+ owner_->network_state_handler_->UpdateManagerProperties();
owner_->ProfileEntryDeleterCompleted(service_path_); // Deletes this.
}