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

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

Issue 297823003: DevTools: Remove async call stacks support for EventTarget.addEventListener. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 7 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
« no previous file with comments | « Source/core/inspector/InspectorDebuggerAgent.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 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 didAddEventListener([Keep] EventTarget*, const AtomicString& eventType, EventListener* listener, bool useCapture);
165
166 [Debugger, Inline=FastReturn]
167 void didRemoveEventListener([Keep] EventTarget*, const AtomicString& eventTy pe, EventListener* listener, bool useCapture);
168
169 [Debugger, Inline=FastReturn]
170 void didRemoveAllEventListeners([Keep] EventTarget*);
171
172 [Debugger, DOMDebugger, Inline=FastReturn] 163 [Debugger, DOMDebugger, Inline=FastReturn]
173 InspectorInstrumentationCookie willHandleEvent([Keep] EventTarget*, const At omicString& eventType, EventListener* listener, bool useCapture); 164 InspectorInstrumentationCookie willHandleEvent([Keep] EventTarget*, const At omicString& eventType, EventListener* listener, bool useCapture);
174 165
175 [Debugger, Inline=FastReturn] 166 [Debugger, Inline=FastReturn]
176 void didHandleEvent(const InspectorInstrumentationCookie&); 167 void didHandleEvent(const InspectorInstrumentationCookie&);
177 168
178 [Timeline, Inline=FastReturn] 169 [Timeline, Inline=FastReturn]
179 InspectorInstrumentationCookie willDispatchEventOnWindow(LocalFrame*, const Event&, DOMWindow*); 170 InspectorInstrumentationCookie willDispatchEventOnWindow(LocalFrame*, const Event&, DOMWindow*);
180 171
181 [Timeline, Inline=FastReturn] 172 [Timeline, Inline=FastReturn]
(...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after
498 interface InspectorCanvasInstrumentation { 489 interface InspectorCanvasInstrumentation {
499 490
500 #include "bindings/v8/ScriptObject.h" 491 #include "bindings/v8/ScriptObject.h"
501 492
502 [Canvas] 493 [Canvas]
503 ScriptObject wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptObject&); 494 ScriptObject wrapCanvas2DRenderingContextForInstrumentation(Document*, const ScriptObject&);
504 495
505 [Canvas] 496 [Canvas]
506 ScriptObject wrapWebGLRenderingContextForInstrumentation(Document*, const Sc riptObject&); 497 ScriptObject wrapWebGLRenderingContextForInstrumentation(Document*, const Sc riptObject&);
507 } 498 }
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorDebuggerAgent.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698