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

Unified Diff: base/test/test_timeouts.cc

Issue 8368009: Replace most LOG statements with DLOG statements in base. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 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: base/test/test_timeouts.cc
===================================================================
--- base/test/test_timeouts.cc (revision 106774)
+++ base/test/test_timeouts.cc (working copy)
@@ -66,7 +66,7 @@
&large_test_timeout_ms_);
// The timeout values should be increasing in the right order.
- CHECK(tiny_timeout_ms_ <= action_timeout_ms_);
- CHECK(action_timeout_ms_ <= action_max_timeout_ms_);
- CHECK(action_max_timeout_ms_ <= large_test_timeout_ms_);
+ DCHECK(tiny_timeout_ms_ <= action_timeout_ms_);
jar (doing other things) 2011/10/23 00:36:28 Is this actually test code, where an ASSERT... wou
+ DCHECK(action_timeout_ms_ <= action_max_timeout_ms_);
+ DCHECK(action_max_timeout_ms_ <= large_test_timeout_ms_);
}

Powered by Google App Engine
This is Rietveld 408576698