Index: sync/sessions/nudge_tracker.cc |
diff --git a/sync/sessions/nudge_tracker.cc b/sync/sessions/nudge_tracker.cc |
index 212500aa38b4ac20990419455e7365c678688416..6a4068eb6ccabd078f20fb61a89170819a6521f8 100644 |
--- a/sync/sessions/nudge_tracker.cc |
+++ b/sync/sessions/nudge_tracker.cc |
@@ -192,11 +192,9 @@ bool NudgeTracker::IsTypeThrottled(ModelType type) const { |
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 = kMaxTimeDelta; |
+ base::TimeDelta time_until_next_unthrottle = base::TimeDelta::Max(); |
for (TypeTrackerMap::const_iterator it = type_trackers_.begin(); |
it != type_trackers_.end(); ++it) { |
if (it->second.IsThrottled()) { |