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

Unified Diff: google_apis/drive/request_sender.cc

Issue 2229413002: google_apis: 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 | « no previous file | google_apis/gaia/account_tracker.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: google_apis/drive/request_sender.cc
diff --git a/google_apis/drive/request_sender.cc b/google_apis/drive/request_sender.cc
index 2f8b4c8bf88689adc2073597aaf4507ab3545809..fc275352d76b59cb7e99677eda3b3d45bb1623b2 100644
--- a/google_apis/drive/request_sender.cc
+++ b/google_apis/drive/request_sender.cc
@@ -27,8 +27,8 @@ RequestSender::RequestSender(
RequestSender::~RequestSender() {
DCHECK(thread_checker_.CalledOnValidThread());
- STLDeleteContainerPointers(in_flight_requests_.begin(),
- in_flight_requests_.end());
+ base::STLDeleteContainerPointers(in_flight_requests_.begin(),
+ in_flight_requests_.end());
}
base::Closure RequestSender::StartRequestWithAuthRetry(
« no previous file with comments | « no previous file | google_apis/gaia/account_tracker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698