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

Unified Diff: Source/core/inspector/InspectorDOMDebuggerAgent.cpp

Issue 1043903003: rAF: Introduce FrameRequestCallbackCollection for managing rAF callbacks. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: . Created 5 years, 9 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: Source/core/inspector/InspectorDOMDebuggerAgent.cpp
diff --git a/Source/core/inspector/InspectorDOMDebuggerAgent.cpp b/Source/core/inspector/InspectorDOMDebuggerAgent.cpp
index 4b55e563a8b3fc0a4edca7f68bdc29d96e3ac4b8..3a346da3fd32005eb339a367ad8ca70cfa54495f 100644
--- a/Source/core/inspector/InspectorDOMDebuggerAgent.cpp
+++ b/Source/core/inspector/InspectorDOMDebuggerAgent.cpp
@@ -488,17 +488,17 @@ void InspectorDOMDebuggerAgent::didRejectPromise()
pauseOnNativeEventIfNeeded(preparePauseOnNativeEventData(promiseRejectedEventName, 0), true);
}
-void InspectorDOMDebuggerAgent::didRequestAnimationFrame(Document*, int)
+void InspectorDOMDebuggerAgent::didRequestAnimationFrame(ExecutionContext*, int)
{
pauseOnNativeEventIfNeeded(preparePauseOnNativeEventData(requestAnimationFrameEventName, 0), true);
}
-void InspectorDOMDebuggerAgent::didCancelAnimationFrame(Document*, int)
+void InspectorDOMDebuggerAgent::didCancelAnimationFrame(ExecutionContext*, int)
{
pauseOnNativeEventIfNeeded(preparePauseOnNativeEventData(cancelAnimationFrameEventName, 0), true);
}
-void InspectorDOMDebuggerAgent::willFireAnimationFrame(Document*, int)
+void InspectorDOMDebuggerAgent::willFireAnimationFrame(ExecutionContext*, int)
{
pauseOnNativeEventIfNeeded(preparePauseOnNativeEventData(animationFrameFiredEventName, 0), false);
}
« no previous file with comments | « Source/core/inspector/InspectorDOMDebuggerAgent.h ('k') | Source/core/inspector/InspectorInstrumentation.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698