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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 |
155 [AsyncCallTracker, Debugger, Inline=FastReturn] | 155 [AsyncCallTracker, DOMDebugger, Inline=FastReturn] |
156 void didHandleEvent(const InspectorInstrumentationCookie&); | 156 void didHandleEvent(const InspectorInstrumentationCookie&); |
157 | 157 |
158 [AsyncCallTracker, Inline=FastReturn] | 158 [AsyncCallTracker, Inline=FastReturn] |
159 void didEnqueueMutationRecord([Keep] ExecutionContext*, MutationObserver*); | 159 void didEnqueueMutationRecord([Keep] ExecutionContext*, MutationObserver*); |
160 | 160 |
161 [AsyncCallTracker, Inline=FastReturn] | 161 [AsyncCallTracker, Inline=FastReturn] |
162 void didClearAllMutationRecords([Keep] ExecutionContext*, MutationObserver*)
; | 162 void didClearAllMutationRecords([Keep] ExecutionContext*, MutationObserver*)
; |
163 | 163 |
164 [AsyncCallTracker, Inline=FastReturn] | 164 [AsyncCallTracker, Inline=FastReturn] |
165 void willDeliverMutationRecords([Keep] ExecutionContext*, MutationObserver*)
; | 165 void willDeliverMutationRecords([Keep] ExecutionContext*, MutationObserver*)
; |
(...skipping 18 matching lines...) Expand all Loading... |
184 | 184 |
185 [PageRuntime] | 185 [PageRuntime] |
186 void didCreateScriptContext([Keep] LocalFrame*, ScriptState*, SecurityOrigin
*, int worldId); | 186 void didCreateScriptContext([Keep] LocalFrame*, ScriptState*, SecurityOrigin
*, int worldId); |
187 | 187 |
188 [PageRuntime, Inline=FastReturn] | 188 [PageRuntime, Inline=FastReturn] |
189 void willReleaseScriptContext([Keep] LocalFrame*, ScriptState*); | 189 void willReleaseScriptContext([Keep] LocalFrame*, ScriptState*); |
190 | 190 |
191 [AsyncCallTracker, DOMDebugger, Inline=FastReturn] | 191 [AsyncCallTracker, DOMDebugger, Inline=FastReturn] |
192 InspectorInstrumentationCookie willFireTimer([Keep] ExecutionContext*, int t
imerId); | 192 InspectorInstrumentationCookie willFireTimer([Keep] ExecutionContext*, int t
imerId); |
193 | 193 |
194 [AsyncCallTracker, Debugger, Inline=FastReturn] | 194 [AsyncCallTracker, DOMDebugger, Inline=FastReturn] |
195 void didFireTimer(const InspectorInstrumentationCookie&); | 195 void didFireTimer(const InspectorInstrumentationCookie&); |
196 | 196 |
197 [Page, Inline=FastReturn] | 197 [Page, Inline=FastReturn] |
198 void didLayout(LocalFrame*); | 198 void didLayout(LocalFrame*); |
199 | 199 |
200 [Page, Inline=FastReturn] | 200 [Page, Inline=FastReturn] |
201 void didScroll(LocalFrame*); | 201 void didScroll(LocalFrame*); |
202 | 202 |
203 [Page, Inline=FastReturn] | 203 [Page, Inline=FastReturn] |
204 void didResizeMainFrame(LocalFrame*); | 204 void didResizeMainFrame(LocalFrame*); |
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
442 interface InspectorOverrides { | 442 interface InspectorOverrides { |
443 [CSS, Inline=FastReturn] | 443 [CSS, Inline=FastReturn] |
444 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud
oState); | 444 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud
oState); |
445 | 445 |
446 [Worker, Inline=FastReturn] | 446 [Worker, Inline=FastReturn] |
447 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context); | 447 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context); |
448 | 448 |
449 [Resource, Inline=FastReturn] | 449 [Resource, Inline=FastReturn] |
450 bool shouldForceCORSPreflight(Document*); | 450 bool shouldForceCORSPreflight(Document*); |
451 } | 451 } |
OLD | NEW |