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

Side by Side Diff: net/url_request/url_request_job_metrics.cc

Issue 43079: NO CODE CHANGE (Closed)
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 unified diff | Download patch
« no previous file with comments | « net/url_request/url_request_job_metrics.h ('k') | net/url_request/url_request_job_tracker.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "net/url_request/url_request_job_metrics.h" 5 #include "net/url_request/url_request_job_metrics.h"
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 #include "base/string_util.h" 8 #include "base/string_util.h"
9 9
10 using base::TimeDelta; 10 using base::TimeDelta;
(...skipping 14 matching lines...) Expand all
25 StringAppendF(text, 25 StringAppendF(text,
26 L"; total bytes read = %d; read calls = %d; time = %lld ms;", 26 L"; total bytes read = %d; read calls = %d; time = %lld ms;",
27 total_bytes_read_, number_of_read_IO_, elapsed.InMilliseconds()); 27 total_bytes_read_, number_of_read_IO_, elapsed.InMilliseconds());
28 28
29 if (success_) { 29 if (success_) {
30 text->append(L" success."); 30 text->append(L" success.");
31 } else { 31 } else {
32 text->append(L" fail."); 32 text->append(L" fail.");
33 } 33 }
34 } 34 }
35
OLDNEW
« no previous file with comments | « net/url_request/url_request_job_metrics.h ('k') | net/url_request/url_request_job_tracker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698