diff options
author | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-28 23:25:24 +0000 |
---|---|---|
committer | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-28 23:25:24 +0000 |
commit | 6d492e01b802a433071e747711b1add46b0be500 (patch) | |
tree | 6170b84acc7a51a2abbd331e9f7df21c1c3a7ea6 /base | |
parent | 44510b70c7c99574d93ec32b35adddb7505c84ff (diff) | |
download | chromium_src-6d492e01b802a433071e747711b1add46b0be500.zip chromium_src-6d492e01b802a433071e747711b1add46b0be500.tar.gz chromium_src-6d492e01b802a433071e747711b1add46b0be500.tar.bz2 |
Change a DCHECK to a DCHECK_LT so we can see the failing values.
This DCHECK sometimes fails on the bots; seeing the failing values may help
us diagnose the problem.
BUG=50556
Review URL: http://codereview.chromium.org/3068010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54069 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base')
-rw-r--r-- | base/time_win.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/time_win.cc b/base/time_win.cc index d4da0f4..872fd97 100644 --- a/base/time_win.cc +++ b/base/time_win.cc @@ -338,7 +338,7 @@ class HighResNowSingleton { int64 now = UnreliableNow(); // Verify that QPC does not seem to drift. - DCHECK(now - ReliableNow() - skew_ < kMaxTimeDrift); + DCHECK_LT(now - ReliableNow() - skew_, kMaxTimeDrift); return TimeDelta::FromMicroseconds(now); } |