| 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 30fe1c046957604f6eb63a6c780979c91333e446..f3cd7206b7826207d9a7198b07e43f128a53a349 100644
|
| --- a/third_party/WebKit/Source/core/frame/DOMTimer.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/DOMTimer.cpp
|
| @@ -134,7 +134,8 @@ void DOMTimer::fired() {
|
|
|
| TRACE_EVENT1("devtools.timeline", "TimerFire", "data",
|
| InspectorTimerFireEvent::data(context, m_timeoutID));
|
| - PerformanceMonitor::HandlerCall handlerCall(context, m_action);
|
| + PerformanceMonitor::HandlerCall handlerCall(
|
| + context, repeatInterval() ? "setInterval" : "setTimeout", true);
|
| InspectorInstrumentation::NativeBreakpoint nativeBreakpoint(
|
| context, "timerFired", false);
|
| InspectorInstrumentation::AsyncTask asyncTask(context, this);
|
|
|