| 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([Keep] ExecutionContext*, co
nst DevToolsFunctionInfo&); | 141 InspectorInstrumentationCookie willCallFunction(ExecutionContext*, const Dev
ToolsFunctionInfo&); |
| 142 | 142 |
| 143 [Debugger, Inline=FastReturn] | 143 [Debugger, Inline=FastReturn] |
| 144 void didCallFunction(const InspectorInstrumentationCookie&); | 144 void didCallFunction(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 |
| (...skipping 21 matching lines...) Expand all Loading... |
| 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 [Debugger, DOMDebugger, Inline=FastReturn] |
| 183 InspectorInstrumentationCookie willEvaluateScript(LocalFrame*, const String&
url, int lineNumber); | 183 InspectorInstrumentationCookie willEvaluateScript(LocalFrame*); |
| 184 | 184 |
| 185 [Debugger, Inline=FastReturn] | 185 [Debugger, Inline=FastReturn] |
| 186 void didEvaluateScript(const InspectorInstrumentationCookie&); | 186 void didEvaluateScript(const InspectorInstrumentationCookie&); |
| 187 | 187 |
| 188 [PageRuntime] | 188 [PageRuntime] |
| 189 void didCreateScriptContext([Keep] LocalFrame*, ScriptState*, SecurityOrigin
*, int worldId); | 189 void didCreateScriptContext([Keep] LocalFrame*, ScriptState*, SecurityOrigin
*, int worldId); |
| 190 | 190 |
| 191 [PageRuntime, Inline=FastReturn] | 191 [PageRuntime, Inline=FastReturn] |
| 192 void willReleaseScriptContext([Keep] LocalFrame*, ScriptState*); | 192 void willReleaseScriptContext([Keep] LocalFrame*, ScriptState*); |
| 193 | 193 |
| (...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 445 interface InspectorOverrides { | 445 interface InspectorOverrides { |
| 446 [CSS, Inline=FastReturn] | 446 [CSS, Inline=FastReturn] |
| 447 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud
oState); | 447 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud
oState); |
| 448 | 448 |
| 449 [Worker, Inline=FastReturn] | 449 [Worker, Inline=FastReturn] |
| 450 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context); | 450 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context); |
| 451 | 451 |
| 452 [Resource, Inline=FastReturn] | 452 [Resource, Inline=FastReturn] |
| 453 bool shouldForceCORSPreflight(Document*); | 453 bool shouldForceCORSPreflight(Document*); |
| 454 } | 454 } |
| OLD | NEW |