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

Unified Diff: chromeos/network/shill_property_handler.cc

Issue 2229383003: chromeos: Use stl utilities from the base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 4 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/policy_applicator.cc ('k') | chromeos/settings/timezone_settings.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/network/shill_property_handler.cc
diff --git a/chromeos/network/shill_property_handler.cc b/chromeos/network/shill_property_handler.cc
index a1e643f4d0046a175ddb7179f2232e264f626e31..7ac56f15120bb74ec33fd971a11eabb0fd691689 100644
--- a/chromeos/network/shill_property_handler.cc
+++ b/chromeos/network/shill_property_handler.cc
@@ -112,10 +112,10 @@ ShillPropertyHandler::ShillPropertyHandler(Listener* listener)
ShillPropertyHandler::~ShillPropertyHandler() {
// Delete network service observers.
- STLDeleteContainerPairSecondPointers(observed_networks_.begin(),
- observed_networks_.end());
- STLDeleteContainerPairSecondPointers(observed_devices_.begin(),
- observed_devices_.end());
+ base::STLDeleteContainerPairSecondPointers(observed_networks_.begin(),
+ observed_networks_.end());
+ base::STLDeleteContainerPairSecondPointers(observed_devices_.begin(),
+ observed_devices_.end());
CHECK(shill_manager_ == DBusThreadManager::Get()->GetShillManagerClient());
shill_manager_->RemovePropertyChangedObserver(this);
}
« no previous file with comments | « chromeos/network/policy_applicator.cc ('k') | chromeos/settings/timezone_settings.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698