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

Unified Diff: components/policy/core/common/cloud/external_policy_data_fetcher.cc

Issue 2231753002: components: Use stl utilities from the base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: One more call site 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: components/policy/core/common/cloud/external_policy_data_fetcher.cc
diff --git a/components/policy/core/common/cloud/external_policy_data_fetcher.cc b/components/policy/core/common/cloud/external_policy_data_fetcher.cc
index e8fc335fe53f6fa43c52871b41e33b53e15052c3..d3474e2826ce20d5c1cd2d17b4bebe5893edd710 100644
--- a/components/policy/core/common/cloud/external_policy_data_fetcher.cc
+++ b/components/policy/core/common/cloud/external_policy_data_fetcher.cc
@@ -160,7 +160,7 @@ ExternalPolicyDataFetcherBackend::ExternalPolicyDataFetcherBackend(
ExternalPolicyDataFetcherBackend::~ExternalPolicyDataFetcherBackend() {
DCHECK(io_task_runner_->RunsTasksOnCurrentThread());
- STLDeleteContainerPairFirstPointers(job_map_.begin(), job_map_.end());
+ base::STLDeleteContainerPairFirstPointers(job_map_.begin(), job_map_.end());
}
std::unique_ptr<ExternalPolicyDataFetcher>

Powered by Google App Engine
This is Rietveld 408576698