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

Unified Diff: chrome/browser/download/save_page_browsertest.cc

Issue 706873002: [chrome/browser/download] Convert VLOGs to DVLOGs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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 | « chrome/browser/download/download_status_updater_win.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/download/save_page_browsertest.cc
diff --git a/chrome/browser/download/save_page_browsertest.cc b/chrome/browser/download/save_page_browsertest.cc
index de4dbf13eb9c7d3f8a7a76b365c0f48621209492..4a784bf013c1e44c984a75a80bfeb65311fc0ff7 100644
--- a/chrome/browser/download/save_page_browsertest.cc
+++ b/chrome/browser/download/save_page_browsertest.cc
@@ -148,28 +148,28 @@ bool DownloadStoredProperly(
// false doesn't necessarily mean that the test has failed or will fail, it
// might just mean that the test hasn't passed yet.
if (info.target_path != expected_path) {
- VLOG(20) << __FUNCTION__ << " " << info.target_path.value()
- << " != " << expected_path.value();
+ DVLOG(20) << __FUNCTION__ << " " << info.target_path.value()
+ << " != " << expected_path.value();
return false;
}
if (info.url_chain.size() != 1u) {
- VLOG(20) << __FUNCTION__ << " " << info.url_chain.size()
- << " != 1";
+ DVLOG(20) << __FUNCTION__ << " " << info.url_chain.size()
+ << " != 1";
return false;
}
if (info.url_chain[0] != expected_url) {
- VLOG(20) << __FUNCTION__ << " " << info.url_chain[0].spec()
- << " != " << expected_url.spec();
+ DVLOG(20) << __FUNCTION__ << " " << info.url_chain[0].spec()
+ << " != " << expected_url.spec();
return false;
}
if ((num_files >= 0) && (info.received_bytes != num_files)) {
- VLOG(20) << __FUNCTION__ << " " << num_files
- << " != " << info.received_bytes;
+ DVLOG(20) << __FUNCTION__ << " " << num_files
+ << " != " << info.received_bytes;
return false;
}
if (info.state != expected_state) {
- VLOG(20) << __FUNCTION__ << " " << info.state
- << " != " << expected_state;
+ DVLOG(20) << __FUNCTION__ << " " << info.state
+ << " != " << expected_state;
return false;
}
return true;
« no previous file with comments | « chrome/browser/download/download_status_updater_win.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698