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

Unified Diff: third_party/crashpad/crashpad/util/net/http_body.cc

Issue 2233733002: third_party/crashpad: Use stl utilities from the base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated README.chromium 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: third_party/crashpad/crashpad/util/net/http_body.cc
diff --git a/third_party/crashpad/crashpad/util/net/http_body.cc b/third_party/crashpad/crashpad/util/net/http_body.cc
index 6bc6ec9ea90daf6b78bc45e609e9ea0edb7548fb..b1bca19e5e58bbcd0e9cf9d196b7ed48a7e94293 100644
--- a/third_party/crashpad/crashpad/util/net/http_body.cc
+++ b/third_party/crashpad/crashpad/util/net/http_body.cc
@@ -89,7 +89,7 @@ CompositeHTTPBodyStream::CompositeHTTPBodyStream(
}
CompositeHTTPBodyStream::~CompositeHTTPBodyStream() {
- STLDeleteContainerPointers(parts_.begin(), parts_.end());
+ base::STLDeleteContainerPointers(parts_.begin(), parts_.end());
}
FileOperationResult CompositeHTTPBodyStream::GetBytesBuffer(uint8_t* buffer,

Powered by Google App Engine
This is Rietveld 408576698