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

Unified Diff: net/url_request/url_request_job_metrics.cc

Issue 40319: Use filter context to track stats better in SDCH filtering (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 9 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 | « net/url_request/url_request_job_metrics.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/url_request/url_request_job_metrics.cc
===================================================================
--- net/url_request/url_request_job_metrics.cc (revision 11636)
+++ net/url_request/url_request_job_metrics.cc (working copy)
@@ -23,8 +23,9 @@
TimeDelta elapsed = end_time_ - start_time_;
StringAppendF(text,
- L"; total bytes read = %d; read calls = %d; time = %lld ms;",
- total_bytes_read_, number_of_read_IO_, elapsed.InMilliseconds());
+ L"; total bytes read = %ld; read calls = %d; time = %lld ms;",
+ static_cast<long>(total_bytes_read_),
+ number_of_read_IO_, elapsed.InMilliseconds());
if (success_) {
text->append(L" success.");
« no previous file with comments | « net/url_request/url_request_job_metrics.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698