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

Unified Diff: components/prefs/pref_notifier_impl.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
« no previous file with comments | « components/policy/core/common/schema.cc ('k') | components/prefs/pref_registry.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/prefs/pref_notifier_impl.cc
diff --git a/components/prefs/pref_notifier_impl.cc b/components/prefs/pref_notifier_impl.cc
index b3d566003c66653950df1043ef36a2dd9977f26c..ffb50b400636ccb8d594e7a2d0e9a2ee68db4a72 100644
--- a/components/prefs/pref_notifier_impl.cc
+++ b/components/prefs/pref_notifier_impl.cc
@@ -32,8 +32,8 @@ PrefNotifierImpl::~PrefNotifierImpl() {
if (!init_observers_.empty())
LOG(WARNING) << "Init observer found at shutdown.";
- STLDeleteContainerPairSecondPointers(pref_observers_.begin(),
- pref_observers_.end());
+ base::STLDeleteContainerPairSecondPointers(pref_observers_.begin(),
+ pref_observers_.end());
pref_observers_.clear();
init_observers_.clear();
}
« no previous file with comments | « components/policy/core/common/schema.cc ('k') | components/prefs/pref_registry.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698