| Index: Source/core/frame/DOMTimer.cpp
|
| diff --git a/Source/core/frame/DOMTimer.cpp b/Source/core/frame/DOMTimer.cpp
|
| index a41845ddc259124db3ff947866edfafd9e260205..26a2133bf75c9e0179ce192dd206f50cf9dbc406 100644
|
| --- a/Source/core/frame/DOMTimer.cpp
|
| +++ b/Source/core/frame/DOMTimer.cpp
|
| @@ -94,9 +94,9 @@ DOMTimer::DOMTimer(ExecutionContext* context, PassOwnPtr<ScheduledAction> action
|
| if (intervalMilliseconds < minimumInterval && m_nestingLevel >= maxTimerNestingLevel)
|
| intervalMilliseconds = minimumInterval;
|
| if (singleShot)
|
| - startOneShot(intervalMilliseconds);
|
| + startOneShot(intervalMilliseconds, FROM_HERE);
|
| else
|
| - startRepeating(intervalMilliseconds);
|
| + startRepeating(intervalMilliseconds, FROM_HERE);
|
| }
|
|
|
| DOMTimer::~DOMTimer()
|
|
|