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

Unified Diff: components/certificate_transparency/log_proof_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/certificate_transparency/log_proof_fetcher.cc
diff --git a/components/certificate_transparency/log_proof_fetcher.cc b/components/certificate_transparency/log_proof_fetcher.cc
index 0cfcc39a5e097a72dbe6c93d086331d81a08b61c..53c2e7c73398e654918e0fa06fa1fc9add0383d1 100644
--- a/components/certificate_transparency/log_proof_fetcher.cc
+++ b/components/certificate_transparency/log_proof_fetcher.cc
@@ -397,8 +397,8 @@ LogProofFetcher::LogProofFetcher(net::URLRequestContext* request_context)
}
LogProofFetcher::~LogProofFetcher() {
- STLDeleteContainerPointers(inflight_fetches_.begin(),
- inflight_fetches_.end());
+ base::STLDeleteContainerPointers(inflight_fetches_.begin(),
+ inflight_fetches_.end());
}
void LogProofFetcher::FetchSignedTreeHead(

Powered by Google App Engine
This is Rietveld 408576698