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

Unified Diff: content/browser/appcache/appcache.cc

Issue 2228403003: content: 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: content/browser/appcache/appcache.cc
diff --git a/content/browser/appcache/appcache.cc b/content/browser/appcache/appcache.cc
index 98c9e5918e7e9f32a60b2b4ba85335978e88eabb..22271973912f9569b172ed38d674e85979e817fb 100644
--- a/content/browser/appcache/appcache.cc
+++ b/content/browser/appcache/appcache.cc
@@ -36,8 +36,8 @@ AppCache::~AppCache() {
}
DCHECK(!owning_group_.get());
storage_->working_set()->RemoveCache(this);
- STLDeleteContainerPairSecondPointers(
- executable_handlers_.begin(), executable_handlers_.end());
+ base::STLDeleteContainerPairSecondPointers(executable_handlers_.begin(),
+ executable_handlers_.end());
}
void AppCache::UnassociateHost(AppCacheHost* host) {
« no previous file with comments | « content/browser/android/synchronous_compositor_observer.cc ('k') | content/browser/appcache/appcache_backend_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698