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

Unified Diff: components/policy/core/common/cloud/external_policy_data_updater.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_updater.cc
diff --git a/components/policy/core/common/cloud/external_policy_data_updater.cc b/components/policy/core/common/cloud/external_policy_data_updater.cc
index eebbd9e1f880fe1bea6e2b7edd1d06576418ab73..9edec6e25e8bad1577b2ca06cec607a2770d4381 100644
--- a/components/policy/core/common/cloud/external_policy_data_updater.cc
+++ b/components/policy/core/common/cloud/external_policy_data_updater.cc
@@ -306,7 +306,7 @@ ExternalPolicyDataUpdater::ExternalPolicyDataUpdater(
ExternalPolicyDataUpdater::~ExternalPolicyDataUpdater() {
DCHECK(task_runner_->RunsTasksOnCurrentThread());
shutting_down_ = true;
- STLDeleteValues(&job_map_);
+ base::STLDeleteValues(&job_map_);
}
void ExternalPolicyDataUpdater::FetchExternalData(

Powered by Google App Engine
This is Rietveld 408576698