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

Side by Side Diff: Source/core/inspector/InspectorInstrumentation.idl

Issue 332493002: DevTools: Support async call stacks for scripted animation events (like scroll). (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 153
154 [Timeline, Inline=FastReturn] 154 [Timeline, Inline=FastReturn]
155 void didDispatchXHRReadyStateChangeEvent(const InspectorInstrumentationCooki e&); 155 void didDispatchXHRReadyStateChangeEvent(const InspectorInstrumentationCooki e&);
156 156
157 [Timeline, Inline=FastReturn] 157 [Timeline, Inline=FastReturn]
158 InspectorInstrumentationCookie willDispatchEvent([Keep] Document*, const Eve nt&, DOMWindow*, Node*, const EventPath&); 158 InspectorInstrumentationCookie willDispatchEvent([Keep] Document*, const Eve nt&, DOMWindow*, Node*, const EventPath&);
159 159
160 [Timeline, Inline=FastReturn] 160 [Timeline, Inline=FastReturn]
161 void didDispatchEvent(const InspectorInstrumentationCookie&); 161 void didDispatchEvent(const InspectorInstrumentationCookie&);
162 162
163 [Debugger, Inline=FastReturn]
164 void didEnqueueEvent([Keep] EventTarget*, Event*);
165
166 [Debugger, Inline=FastReturn]
167 void didDispatchEvent([Keep] EventTarget*, Event*);
168
163 [Debugger, DOMDebugger, Inline=FastReturn] 169 [Debugger, DOMDebugger, Inline=FastReturn]
164 InspectorInstrumentationCookie willHandleEvent([Keep] EventTarget*, const At omicString& eventType, EventListener* listener, bool useCapture); 170 InspectorInstrumentationCookie willHandleEvent([Keep] EventTarget*, Event*, EventListener* listener, bool useCapture);
165 171
166 [Debugger, Inline=FastReturn] 172 [Debugger, Inline=FastReturn]
167 void didHandleEvent(const InspectorInstrumentationCookie&); 173 void didHandleEvent(const InspectorInstrumentationCookie&);
168 174
169 [Timeline, Inline=FastReturn] 175 [Timeline, Inline=FastReturn]
170 InspectorInstrumentationCookie willDispatchEventOnWindow(LocalFrame*, const Event&, DOMWindow*); 176 InspectorInstrumentationCookie willDispatchEventOnWindow(LocalFrame*, const Event&, DOMWindow*);
171 177
172 [Timeline, Inline=FastReturn] 178 [Timeline, Inline=FastReturn]
173 void didDispatchEventOnWindow(const InspectorInstrumentationCookie&); 179 void didDispatchEventOnWindow(const InspectorInstrumentationCookie&);
174 180
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after
489 interface InspectorCanvasInstrumentation { 495 interface InspectorCanvasInstrumentation {
490 496
491 #include "bindings/v8/ScriptValue.h" 497 #include "bindings/v8/ScriptValue.h"
492 498
493 [Canvas] 499 [Canvas]
494 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptValue&); 500 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptValue&);
495 501
496 [Canvas] 502 [Canvas]
497 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr iptValue&); 503 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr iptValue&);
498 } 504 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698