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

Unified Diff: net/http/http_cache.cc

Issue 2229393003: net: 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
« no previous file with comments | « net/extras/sqlite/sqlite_persistent_cookie_store_unittest.cc ('k') | net/http/http_network_session.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_cache.cc
diff --git a/net/http/http_cache.cc b/net/http/http_cache.cc
index 1422400e5cb44574fac913de4207ad06db79d141..daca3b75e75a7978c315a506e91de574c2725b50 100644
--- a/net/http/http_cache.cc
+++ b/net/http/http_cache.cc
@@ -342,7 +342,7 @@ HttpCache::~HttpCache() {
DeactivateEntry(entry);
}
- STLDeleteElements(&doomed_entries_);
+ base::STLDeleteElements(&doomed_entries_);
// Before deleting pending_ops_, we have to make sure that the disk cache is
// done with said operations, or it will attempt to use deleted data.
@@ -366,7 +366,7 @@ HttpCache::~HttpCache() {
pending_op->callback.Reset();
}
- STLDeleteElements(&pending_op->pending_queue);
+ base::STLDeleteElements(&pending_op->pending_queue);
if (delete_pending_op)
delete pending_op;
}
« no previous file with comments | « net/extras/sqlite/sqlite_persistent_cookie_store_unittest.cc ('k') | net/http/http_network_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698