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

Unified Diff: Source/core/inspector/InspectorInstrumentation.idl

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/InspectorInstrumentation.idl
diff --git a/Source/core/inspector/InspectorInstrumentation.idl b/Source/core/inspector/InspectorInstrumentation.idl
index ca9abbe9c1990275e97d1018f7e878a25a3a82dd..b2bdb440422a447356ff9430777458b645b5ccdc 100644
--- a/Source/core/inspector/InspectorInstrumentation.idl
+++ b/Source/core/inspector/InspectorInstrumentation.idl
@@ -339,13 +339,13 @@ interface InspectorInstrumentation {
void willDestroyResource(Resource* cachedResource);
[AsyncCallTracker, DOMDebugger]
- void didRequestAnimationFrame([Keep] Document*, int callbackId);
+ void didRequestAnimationFrame([Keep] ExecutionContext*, int callbackId);
[AsyncCallTracker, DOMDebugger]
- void didCancelAnimationFrame([Keep] Document*, int callbackId);
+ void didCancelAnimationFrame([Keep] ExecutionContext*, int callbackId);
[AsyncCallTracker, DOMDebugger]
- InspectorInstrumentationCookie willFireAnimationFrame([Keep] Document*, int callbackId);
+ InspectorInstrumentationCookie willFireAnimationFrame([Keep] ExecutionContext*, int callbackId);
[AsyncCallTracker, Inline=FastReturn]
void didFireAnimationFrame(const InspectorInstrumentationCookie&);

Powered by Google App Engine
This is Rietveld 408576698