| Index: third_party/WebKit/Source/platform/Timer.h
|
| diff --git a/third_party/WebKit/Source/platform/Timer.h b/third_party/WebKit/Source/platform/Timer.h
|
| index 87e8aae279db9e5cabb782f2dcd5d1ea6d83035b..0a9503f9e72360f70b0496b8b135b01f46b5a61b 100644
|
| --- a/third_party/WebKit/Source/platform/Timer.h
|
| +++ b/third_party/WebKit/Source/platform/Timer.h
|
| @@ -68,7 +68,7 @@ public:
|
|
|
| void augmentRepeatInterval(double delta) {
|
| double now = timerMonotonicallyIncreasingTime();
|
| - setNextFireTime(now, m_nextFireTime - now + delta);
|
| + setNextFireTime(now, std::max(m_nextFireTime - now + delta, 0.0));
|
| m_repeatInterval += delta;
|
| }
|
|
|
|
|