| Index: third_party/WebKit/Source/core/dom/ScriptedAnimationController.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/ScriptedAnimationController.cpp b/third_party/WebKit/Source/core/dom/ScriptedAnimationController.cpp
|
| index d109324d9c97aab3d3fd6a4aec53104dbf48d68b..47ad9e342a1c768e76c4f9ad512fefe69ef56622 100644
|
| --- a/third_party/WebKit/Source/core/dom/ScriptedAnimationController.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/ScriptedAnimationController.cpp
|
| @@ -113,8 +113,7 @@ void ScriptedAnimationController::dispatchEvents(
|
| // avoid special casting window.
|
| // FIXME: We should not fire events for nodes that are no longer in the
|
| // tree.
|
| - InspectorInstrumentation::AsyncTask asyncTask(
|
| - eventTarget->getExecutionContext(), event);
|
| + probe::AsyncTask asyncTask(eventTarget->getExecutionContext(), event);
|
| if (LocalDOMWindow* window = eventTarget->toLocalDOMWindow())
|
| window->dispatchEvent(event, nullptr);
|
| else
|
| @@ -175,8 +174,8 @@ void ScriptedAnimationController::enqueueTask(
|
| }
|
|
|
| void ScriptedAnimationController::enqueueEvent(Event* event) {
|
| - InspectorInstrumentation::asyncTaskScheduled(
|
| - event->target()->getExecutionContext(), event->type(), event);
|
| + probe::asyncTaskScheduled(event->target()->getExecutionContext(),
|
| + event->type(), event);
|
| m_eventQueue.push_back(event);
|
| scheduleAnimationIfNeeded();
|
| }
|
|
|