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: util/net/http_transport_mac.mm

Issue 1336413003: In the .mm files use the crashpad::implicit_cast .. explicitly. (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: Created 5 years, 3 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
« util/mac/launchd.mm ('K') | « util/mac/launchd.mm ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: util/net/http_transport_mac.mm
diff --git a/util/net/http_transport_mac.mm b/util/net/http_transport_mac.mm
index af523c69c1775815f4ca5947840f2edd071dbbfe..891c56db8aeba7deb16994e4265884922a7e451a 100644
--- a/util/net/http_transport_mac.mm
+++ b/util/net/http_transport_mac.mm
@@ -203,7 +203,7 @@ bool HTTPTransportMac::ExecuteSynchronously(std::string* response_body) {
NSInteger http_status = [http_response statusCode];
if (http_status != 200) {
LOG(ERROR) << base::StringPrintf("HTTP status %ld",
- implicit_cast<long>(http_status));
+ crashpad::implicit_cast<long>(http_status));
return false;
}
« util/mac/launchd.mm ('K') | « util/mac/launchd.mm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698