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

Unified Diff: chromeos/network/network_configuration_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
Index: chromeos/network/network_configuration_handler.cc
diff --git a/chromeos/network/network_configuration_handler.cc b/chromeos/network/network_configuration_handler.cc
index 7cabfdf0d66db090d6c0df0aece04cde63b8e1c2..128c5dea04d4b179a7d32911cbe70e6ae02f20a9 100644
--- a/chromeos/network/network_configuration_handler.cc
+++ b/chromeos/network/network_configuration_handler.cc
@@ -335,7 +335,7 @@ void NetworkConfigurationHandler::RemoveConfiguration(
const network_handler::ErrorCallback& error_callback) {
// Service.Remove is not reliable. Instead, request the profile entries
// for the service and remove each entry.
- if (ContainsKey(profile_entry_deleters_, service_path)) {
+ if (base::ContainsKey(profile_entry_deleters_, service_path)) {
InvokeErrorCallback(service_path, error_callback,
"RemoveConfigurationInProgress");
return;
@@ -378,8 +378,8 @@ NetworkConfigurationHandler::NetworkConfigurationHandler()
}
NetworkConfigurationHandler::~NetworkConfigurationHandler() {
- STLDeleteContainerPairSecondPointers(profile_entry_deleters_.begin(),
- profile_entry_deleters_.end());
+ base::STLDeleteContainerPairSecondPointers(profile_entry_deleters_.begin(),
+ profile_entry_deleters_.end());
}
void NetworkConfigurationHandler::Init(

Powered by Google App Engine
This is Rietveld 408576698