Home
last modified time | relevance | path

Searched refs:kHour (Results 1 – 2 of 2) sorted by relevance

/third_party/cef/libcef/common/
Dcef_crash_report_upload_thread.cc170 const int kHour = 60 * 60; // 1 hour in IncreaseBackoff() local
172 kHour / 4, // 15 minutes in IncreaseBackoff()
173 kHour, // 1 hour in IncreaseBackoff()
174 kHour * 2, // 2 hours in IncreaseBackoff()
175 kHour * 4, // 4 hours in IncreaseBackoff()
176 kHour * 8, // 8 hours in IncreaseBackoff()
177 kHour * 24, // 24 hours in IncreaseBackoff()
/third_party/node/lib/internal/console/
Dconstructor.js77 const kHour = 60 * kMinute; constant
629 if (ms >= kHour) {
630 hours = MathFloor(ms / kHour);
631 ms = ms % kHour;