| Index: third_party/WebKit/Source/core/frame/DOMTimer.cpp
|
| diff --git a/third_party/WebKit/Source/core/frame/DOMTimer.cpp b/third_party/WebKit/Source/core/frame/DOMTimer.cpp
|
| index 40d6a6c3a2f4c1a332c69fbc68db3fd8faae7e65..b97d8d6e2b2065aaf7b3be3ad7781a139b9d3353 100644
|
| --- a/third_party/WebKit/Source/core/frame/DOMTimer.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/DOMTimer.cpp
|
| @@ -81,7 +81,7 @@ DOMTimer::DOMTimer(ExecutionContext* context,
|
| timeout_id_(timeout_id),
|
| nesting_level_(context->Timers()->TimerNestingLevel() + 1),
|
| action_(action) {
|
| - ASSERT(timeout_id > 0);
|
| + DCHECK_GT(timeout_id, 0);
|
| if (ShouldForwardUserGesture(interval, nesting_level_)) {
|
| // Thread safe because shouldForwardUserGesture will only return true if
|
| // execution is on the the main thread.
|
|
|