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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 [Timeline, Inline=FastReturn] | 139 [Timeline, Inline=FastReturn] |
140 void didScheduleResourceRequest([Keep] Document*, const String& url); | 140 void didScheduleResourceRequest([Keep] Document*, const String& url); |
141 | 141 |
142 [DOMDebugger, Debugger, Timeline, Inline=FastReturn] | 142 [DOMDebugger, Debugger, Timeline, Inline=FastReturn] |
143 void didInstallTimer([Keep] ExecutionContext*, int timerId, int timeout, boo
l singleShot); | 143 void didInstallTimer([Keep] ExecutionContext*, int timerId, int timeout, boo
l singleShot); |
144 | 144 |
145 [DOMDebugger, Debugger, Timeline, Inline=FastReturn] | 145 [DOMDebugger, Debugger, Timeline, Inline=FastReturn] |
146 void didRemoveTimer([Keep] ExecutionContext*, int timerId); | 146 void didRemoveTimer([Keep] ExecutionContext*, int timerId); |
147 | 147 |
148 [Timeline, Inline=FastReturn] | 148 [Timeline, Inline=FastReturn] |
149 InspectorInstrumentationCookie willCallFunction([Keep] ExecutionContext*, co
nst String& scriptName, int scriptLine); | 149 InspectorInstrumentationCookie willCallFunction([Keep] ExecutionContext*, in
t scriptId, const String& scriptName, int scriptLine); |
150 | 150 |
151 [Timeline, Inline=FastReturn] | 151 [Timeline, Inline=FastReturn] |
152 void didCallFunction(const InspectorInstrumentationCookie&); | 152 void didCallFunction(const InspectorInstrumentationCookie&); |
153 | 153 |
154 [Timeline, Inline=FastReturn] | 154 [Timeline, Inline=FastReturn] |
155 InspectorInstrumentationCookie willDispatchXHRReadyStateChangeEvent([Keep] E
xecutionContext*, XMLHttpRequest*); | 155 InspectorInstrumentationCookie willDispatchXHRReadyStateChangeEvent([Keep] E
xecutionContext*, XMLHttpRequest*); |
156 | 156 |
157 [Timeline, Inline=FastReturn] | 157 [Timeline, Inline=FastReturn] |
158 void didDispatchXHRReadyStateChangeEvent(const InspectorInstrumentationCooki
e&); | 158 void didDispatchXHRReadyStateChangeEvent(const InspectorInstrumentationCooki
e&); |
159 | 159 |
(...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
534 | 534 |
535 [Debugger, Inline=FastReturn] | 535 [Debugger, Inline=FastReturn] |
536 void didCreatePromise(ExecutionContext*, const ScriptObject& promise); | 536 void didCreatePromise(ExecutionContext*, const ScriptObject& promise); |
537 | 537 |
538 [Debugger, Inline=FastReturn] | 538 [Debugger, Inline=FastReturn] |
539 void didUpdatePromiseParent(ExecutionContext*, const ScriptObject& promise,
const ScriptObject& parentPromise); | 539 void didUpdatePromiseParent(ExecutionContext*, const ScriptObject& promise,
const ScriptObject& parentPromise); |
540 | 540 |
541 [Debugger, Inline=FastReturn] | 541 [Debugger, Inline=FastReturn] |
542 void didUpdatePromiseState(ExecutionContext*, const ScriptObject& promise, V
8PromiseCustom::PromiseState, const ScriptValue& result); | 542 void didUpdatePromiseState(ExecutionContext*, const ScriptObject& promise, V
8PromiseCustom::PromiseState, const ScriptValue& result); |
543 } | 543 } |
OLD | NEW |