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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 [DOMDebugger, Inline=FastReturn] | 131 [DOMDebugger, Inline=FastReturn] |
132 void didFireWebGLErrorOrWarning(Element*, const String& message); | 132 void didFireWebGLErrorOrWarning(Element*, const String& message); |
133 | 133 |
134 [AsyncCallTracker, DOMDebugger, Inline=FastReturn] | 134 [AsyncCallTracker, DOMDebugger, Inline=FastReturn] |
135 void didInstallTimer([Keep] ExecutionContext*, int timerId, int timeout, boo
l singleShot); | 135 void didInstallTimer([Keep] ExecutionContext*, int timerId, int timeout, boo
l singleShot); |
136 | 136 |
137 [AsyncCallTracker, DOMDebugger, Inline=FastReturn] | 137 [AsyncCallTracker, DOMDebugger, Inline=FastReturn] |
138 void didRemoveTimer([Keep] ExecutionContext*, int timerId); | 138 void didRemoveTimer([Keep] ExecutionContext*, int timerId); |
139 | 139 |
140 [Debugger, Inline=FastReturn] | 140 [Debugger, Inline=FastReturn] |
141 InspectorInstrumentationCookie willCallFunction(ExecutionContext*, const Dev
ToolsFunctionInfo&); | 141 InspectorInstrumentationCookie willExecuteScript(ExecutionContext*, int scri
ptId); |
142 | 142 |
143 [Debugger, Inline=FastReturn] | 143 [Debugger, Inline=FastReturn] |
144 void didCallFunction(const InspectorInstrumentationCookie&); | 144 void didExecuteScript(const InspectorInstrumentationCookie&); |
145 | 145 |
146 [AsyncCallTracker, Inline=FastReturn] | 146 [AsyncCallTracker, Inline=FastReturn] |
147 void didEnqueueEvent([Keep] EventTarget*, Event*); | 147 void didEnqueueEvent([Keep] EventTarget*, Event*); |
148 | 148 |
149 [AsyncCallTracker, Inline=FastReturn] | 149 [AsyncCallTracker, Inline=FastReturn] |
150 void didRemoveEvent([Keep] EventTarget*, Event*); | 150 void didRemoveEvent([Keep] EventTarget*, Event*); |
151 | 151 |
152 [AsyncCallTracker, DOMDebugger, Inline=FastReturn] | 152 [AsyncCallTracker, DOMDebugger, Inline=FastReturn] |
153 InspectorInstrumentationCookie willHandleEvent([Keep] EventTarget*, Event*,
EventListener* listener, bool useCapture); | 153 InspectorInstrumentationCookie willHandleEvent([Keep] EventTarget*, Event*,
EventListener* listener, bool useCapture); |
154 | 154 |
(...skipping 17 matching lines...) Expand all Loading... |
172 | 172 |
173 [AsyncCallTracker, Inline=FastReturn] | 173 [AsyncCallTracker, Inline=FastReturn] |
174 void didKillAllExecutionContextTasks([Keep] ExecutionContext*); | 174 void didKillAllExecutionContextTasks([Keep] ExecutionContext*); |
175 | 175 |
176 [AsyncCallTracker, Inline=FastReturn] | 176 [AsyncCallTracker, Inline=FastReturn] |
177 void willPerformExecutionContextTask([Keep] ExecutionContext*, ExecutionCont
extTask*); | 177 void willPerformExecutionContextTask([Keep] ExecutionContext*, ExecutionCont
extTask*); |
178 | 178 |
179 [AsyncCallTracker, Inline=FastReturn] | 179 [AsyncCallTracker, Inline=FastReturn] |
180 void didPerformExecutionContextTask(ExecutionContext*); | 180 void didPerformExecutionContextTask(ExecutionContext*); |
181 | 181 |
182 [Debugger, DOMDebugger, Inline=FastReturn] | 182 [DOMDebugger, Inline=FastReturn] |
183 InspectorInstrumentationCookie willEvaluateScript(LocalFrame*); | 183 void willEvaluateScript(ExecutionContext*); |
184 | |
185 [Debugger, Inline=FastReturn] | |
186 void didEvaluateScript(const InspectorInstrumentationCookie&); | |
187 | 184 |
188 [PageRuntime] | 185 [PageRuntime] |
189 void didCreateScriptContext([Keep] LocalFrame*, ScriptState*, SecurityOrigin
*, int worldId); | 186 void didCreateScriptContext([Keep] LocalFrame*, ScriptState*, SecurityOrigin
*, int worldId); |
190 | 187 |
191 [PageRuntime, Inline=FastReturn] | 188 [PageRuntime, Inline=FastReturn] |
192 void willReleaseScriptContext([Keep] LocalFrame*, ScriptState*); | 189 void willReleaseScriptContext([Keep] LocalFrame*, ScriptState*); |
193 | 190 |
194 [AsyncCallTracker, DOMDebugger, Inline=FastReturn] | 191 [AsyncCallTracker, DOMDebugger, Inline=FastReturn] |
195 InspectorInstrumentationCookie willFireTimer([Keep] ExecutionContext*, int t
imerId); | 192 InspectorInstrumentationCookie willFireTimer([Keep] ExecutionContext*, int t
imerId); |
196 | 193 |
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
445 interface InspectorOverrides { | 442 interface InspectorOverrides { |
446 [CSS, Inline=FastReturn] | 443 [CSS, Inline=FastReturn] |
447 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud
oState); | 444 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud
oState); |
448 | 445 |
449 [Worker, Inline=FastReturn] | 446 [Worker, Inline=FastReturn] |
450 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context); | 447 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context); |
451 | 448 |
452 [Resource, Inline=FastReturn] | 449 [Resource, Inline=FastReturn] |
453 bool shouldForceCORSPreflight(Document*); | 450 bool shouldForceCORSPreflight(Document*); |
454 } | 451 } |
OLD | NEW |