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

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

Issue 333333002: DevTools: Instrument DOMWindowEventQueue for async stacks. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebased 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 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
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] 163 [Debugger, Inline=FastReturn]
164 void didEnqueueEvent([Keep] EventTarget*, Event*); 164 void didEnqueueEvent([Keep] EventTarget*, Event*);
165 165
166 [Debugger, Inline=FastReturn] 166 [Debugger, Inline=FastReturn]
167 void didDispatchEvent([Keep] EventTarget*, Event*); 167 void didRemoveEvent([Keep] EventTarget*, Event*);
168 168
169 [Debugger, DOMDebugger, Inline=FastReturn] 169 [Debugger, DOMDebugger, Inline=FastReturn]
170 InspectorInstrumentationCookie willHandleEvent([Keep] EventTarget*, Event*, EventListener* listener, bool useCapture); 170 InspectorInstrumentationCookie willHandleEvent([Keep] EventTarget*, Event*, EventListener* listener, bool useCapture);
171 171
172 [Debugger, Inline=FastReturn] 172 [Debugger, Inline=FastReturn]
173 void didHandleEvent(const InspectorInstrumentationCookie&); 173 void didHandleEvent(const InspectorInstrumentationCookie&);
174 174
175 [Timeline, Inline=FastReturn] 175 [Timeline, Inline=FastReturn]
176 InspectorInstrumentationCookie willDispatchEventOnWindow(LocalFrame*, const Event&, DOMWindow*); 176 InspectorInstrumentationCookie willDispatchEventOnWindow(LocalFrame*, const Event&, DOMWindow*);
177 177
(...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after
495 interface InspectorCanvasInstrumentation { 495 interface InspectorCanvasInstrumentation {
496 496
497 #include "bindings/v8/ScriptValue.h" 497 #include "bindings/v8/ScriptValue.h"
498 498
499 [Canvas] 499 [Canvas]
500 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptValue&); 500 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptValue&);
501 501
502 [Canvas] 502 [Canvas]
503 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr iptValue&); 503 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr iptValue&);
504 } 504 }
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorDebuggerAgent.cpp ('k') | Source/core/workers/WorkerEventQueue.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698