| 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 344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 526 | 517 |
| 527 [Debugger, Inline=FastReturn] | 518 [Debugger, Inline=FastReturn] |
| 528 void didCreatePromise(ExecutionContext*, const ScriptObject& promise); | 519 void didCreatePromise(ExecutionContext*, const ScriptObject& promise); |
| 529 | 520 |
| 530 [Debugger, Inline=FastReturn] | 521 [Debugger, Inline=FastReturn] |
| 531 void didUpdatePromiseParent(ExecutionContext*, const ScriptObject& promise,
const ScriptObject& parentPromise); | 522 void didUpdatePromiseParent(ExecutionContext*, const ScriptObject& promise,
const ScriptObject& parentPromise); |
| 532 | 523 |
| 533 [Debugger, Inline=FastReturn] | 524 [Debugger, Inline=FastReturn] |
| 534 void didUpdatePromiseState(ExecutionContext*, const ScriptObject& promise, V
8PromiseCustom::PromiseState, const ScriptValue& result); | 525 void didUpdatePromiseState(ExecutionContext*, const ScriptObject& promise, V
8PromiseCustom::PromiseState, const ScriptValue& result); |
| 535 } | 526 } |
| OLD | NEW |