| Index: third_party/WebKit/Source/core/dom/FrameRequestCallbackCollection.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/FrameRequestCallbackCollection.cpp b/third_party/WebKit/Source/core/dom/FrameRequestCallbackCollection.cpp
|
| index 74dcbb75b8ad7deb042467fa0d8c6e3fe07a6b86..8ecc1e3779176311a622f9906791d40f3fc254a2 100644
|
| --- a/third_party/WebKit/Source/core/dom/FrameRequestCallbackCollection.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/FrameRequestCallbackCollection.cpp
|
| @@ -5,6 +5,7 @@
|
| #include "core/dom/FrameRequestCallbackCollection.h"
|
|
|
| #include "core/dom/FrameRequestCallback.h"
|
| +#include "core/frame/PerformanceMonitor.h"
|
| #include "core/inspector/InspectorInstrumentation.h"
|
| #include "core/inspector/InspectorTraceEvents.h"
|
|
|
| @@ -78,6 +79,8 @@ void FrameRequestCallbackCollection::executeCallbacks(
|
| InspectorInstrumentation::NativeBreakpoint nativeBreakpoint(
|
| m_context, "animationFrameFired", false);
|
| InspectorInstrumentation::AsyncTask asyncTask(m_context, callback);
|
| + PerformanceMonitor::HandlerCall handlerCall(
|
| + m_context, "requestAnimationFrame", true);
|
| if (callback->m_useLegacyTimeBase)
|
| callback->handleEvent(highResNowMsLegacy);
|
| else
|
|
|