| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |