Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(446)

Unified Diff: third_party/WebKit/Source/core/dom/ScriptedAnimationController.cpp

Issue 2727633006: DevTools: Rename InspectorInstrumentation:: namespace into probe:: (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();
}
« no previous file with comments | « third_party/WebKit/Source/core/dom/PseudoElement.cpp ('k') | third_party/WebKit/Source/core/dom/StyleEngine.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698