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

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

Issue 114033002: DevTools: Capture async stacks for event listeners. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: addressed Created 7 years 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
« no previous file with comments | « Source/core/inspector/InspectorInstrumentation.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 165
166 [Timeline, Inline=FastReturn] 166 [Timeline, Inline=FastReturn]
167 void didDispatchXHRReadyStateChangeEvent(const InspectorInstrumentationCooki e&); 167 void didDispatchXHRReadyStateChangeEvent(const InspectorInstrumentationCooki e&);
168 168
169 [Timeline, Inline=FastReturn] 169 [Timeline, Inline=FastReturn]
170 InspectorInstrumentationCookie willDispatchEvent([Keep] Document*, const Eve nt&, DOMWindow*, Node*, const EventPath&); 170 InspectorInstrumentationCookie willDispatchEvent([Keep] Document*, const Eve nt&, DOMWindow*, Node*, const EventPath&);
171 171
172 [Timeline, Inline=FastReturn] 172 [Timeline, Inline=FastReturn]
173 void didDispatchEvent(const InspectorInstrumentationCookie&); 173 void didDispatchEvent(const InspectorInstrumentationCookie&);
174 174
175 [DOMDebugger, Inline=FastReturn] 175 [Debugger, Inline=FastReturn]
176 InspectorInstrumentationCookie willHandleEvent(ExecutionContext*, Event*); 176 void didAddEventListener([Keep] EventTarget*, const AtomicString& eventType, EventListener* listener, bool useCapture);
177
178 [Debugger, Inline=FastReturn]
179 void didRemoveEventListener([Keep] EventTarget*, const AtomicString& eventTy pe, EventListener* listener, bool useCapture);
180
181 [Debugger, Inline=FastReturn]
182 void didRemoveAllEventListeners([Keep] EventTarget*);
183
184 [Debugger, DOMDebugger, Inline=FastReturn]
185 InspectorInstrumentationCookie willHandleEvent([Keep] EventTarget*, const At omicString& eventType, EventListener* listener, bool useCapture);
177 186
178 [Debugger, Inline=FastReturn] 187 [Debugger, Inline=FastReturn]
179 void didHandleEvent(const InspectorInstrumentationCookie&); 188 void didHandleEvent(const InspectorInstrumentationCookie&);
180 189
181 [Timeline, Inline=FastReturn] 190 [Timeline, Inline=FastReturn]
182 InspectorInstrumentationCookie willDispatchEventOnWindow(Frame*, const Event &, DOMWindow*); 191 InspectorInstrumentationCookie willDispatchEventOnWindow(Frame*, const Event &, DOMWindow*);
183 192
184 [Timeline, Inline=FastReturn] 193 [Timeline, Inline=FastReturn]
185 void didDispatchEventOnWindow(const InspectorInstrumentationCookie&); 194 void didDispatchEventOnWindow(const InspectorInstrumentationCookie&);
186 195
(...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after
519 interface InspectorCanvasInstrumentation { 528 interface InspectorCanvasInstrumentation {
520 529
521 #include "bindings/v8/ScriptObject.h" 530 #include "bindings/v8/ScriptObject.h"
522 531
523 [Canvas] 532 [Canvas]
524 ScriptObject wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptObject&); 533 ScriptObject wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptObject&);
525 534
526 [Canvas] 535 [Canvas]
527 ScriptObject wrapWebGLRenderingContextForInstrumentation(Document*, const Sc riptObject&); 536 ScriptObject wrapWebGLRenderingContextForInstrumentation(Document*, const Sc riptObject&);
528 } 537 }
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorInstrumentation.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698