Index: sync/sessions/nudge_tracker.cc |
diff --git a/sync/sessions/nudge_tracker.cc b/sync/sessions/nudge_tracker.cc |
index b69d7539b23b7e3561a6e511a893887d9e742b37..212500aa38b4ac20990419455e7365c678688416 100644 |
--- a/sync/sessions/nudge_tracker.cc |
+++ b/sync/sessions/nudge_tracker.cc |
@@ -192,9 +192,11 @@ |
base::TimeDelta NudgeTracker::GetTimeUntilNextUnthrottle( |
base::TimeTicks now) const { |
DCHECK(IsAnyTypeThrottled()) << "This function requires a pending unthrottle"; |
+ const base::TimeDelta kMaxTimeDelta = |
+ base::TimeDelta::FromInternalValue(kint64max); |
// Return min of GetTimeUntilUnthrottle() values for all IsThrottled() types. |
- base::TimeDelta time_until_next_unthrottle = base::TimeDelta::Max(); |
+ base::TimeDelta time_until_next_unthrottle = kMaxTimeDelta; |
for (TypeTrackerMap::const_iterator it = type_trackers_.begin(); |
it != type_trackers_.end(); ++it) { |
if (it->second.IsThrottled()) { |
@@ -203,7 +205,7 @@ |
it->second.GetTimeUntilUnthrottle(now)); |
} |
} |
- DCHECK(!time_until_next_unthrottle.is_max()); |
+ DCHECK(kMaxTimeDelta != time_until_next_unthrottle); |
return time_until_next_unthrottle; |
} |