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

Unified Diff: net/url_request/url_request_http_job.cc

Issue 2161193003: Use __func__ instead of __FUNCTION__. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: git cl format hates WebKit style Created 4 years, 5 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: net/url_request/url_request_http_job.cc
diff --git a/net/url_request/url_request_http_job.cc b/net/url_request/url_request_http_job.cc
index 27c5df6d506868ef27a409f5181d0a03e9556055..2a422f8831e9b3128bbfa731dda91d74c6630243 100644
--- a/net/url_request/url_request_http_job.cc
+++ b/net/url_request/url_request_http_job.cc
@@ -1391,8 +1391,7 @@ bool URLRequestHttpJob::ShouldFixMismatchedContentLength(int rv) const {
if (request_ && request_->response_headers()) {
int64_t expected_length =
request_->response_headers()->GetContentLength();
- VLOG(1) << __FUNCTION__ << "() "
- << "\"" << request_->url().spec() << "\""
+ VLOG(1) << __func__ << "() \"" << request_->url().spec() << "\""
<< " content-length = " << expected_length
<< " pre total = " << prefilter_bytes_read()
<< " post total = " << postfilter_bytes_read();

Powered by Google App Engine
This is Rietveld 408576698