| 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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 | 109 |
| 110 [CSS, Inline=FastReturn] | 110 [CSS, Inline=FastReturn] |
| 111 void willMutateStyle(CSSStyleDeclaration*); | 111 void willMutateStyle(CSSStyleDeclaration*); |
| 112 | 112 |
| 113 [CSS, Inline=FastReturn] | 113 [CSS, Inline=FastReturn] |
| 114 void didMutateStyle([Keep] CSSStyleDeclaration*, bool); | 114 void didMutateStyle([Keep] CSSStyleDeclaration*, bool); |
| 115 | 115 |
| 116 [CSS, Inline=FastReturn] | 116 [CSS, Inline=FastReturn] |
| 117 void activeStyleSheetsUpdated([Keep] Document*); | 117 void activeStyleSheetsUpdated([Keep] Document*); |
| 118 | 118 |
| 119 [PageRuntime] | |
| 120 void frameWindowDiscarded(LocalFrame*, LocalDOMWindow* domWindow); | |
| 121 | |
| 122 [CSS, Inline=FastReturn] | 119 [CSS, Inline=FastReturn] |
| 123 void mediaQueryResultChanged(Document*); | 120 void mediaQueryResultChanged(Document*); |
| 124 | 121 |
| 125 [DOM, Inline=FastReturn] | 122 [DOM, Inline=FastReturn] |
| 126 void didPushShadowRoot([Keep] Element* host, ShadowRoot*); | 123 void didPushShadowRoot([Keep] Element* host, ShadowRoot*); |
| 127 | 124 |
| 128 [DOM, Inline=FastReturn] | 125 [DOM, Inline=FastReturn] |
| 129 void willPopShadowRoot([Keep] Element* host, ShadowRoot*); | 126 void willPopShadowRoot([Keep] Element* host, ShadowRoot*); |
| 130 | 127 |
| 131 [DOMDebugger, Inline=FastReturn] | 128 [DOMDebugger, Inline=FastReturn] |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 [AsyncCallStackTracker, Inline=FastReturn] | 203 [AsyncCallStackTracker, Inline=FastReturn] |
| 207 void didPerformExecutionContextTask(ExecutionContext*); | 204 void didPerformExecutionContextTask(ExecutionContext*); |
| 208 | 205 |
| 209 [Debugger, Timeline, Inline=FastReturn] | 206 [Debugger, Timeline, Inline=FastReturn] |
| 210 InspectorInstrumentationCookie willEvaluateScript([Keep] LocalFrame*, const
String& url, int lineNumber); | 207 InspectorInstrumentationCookie willEvaluateScript([Keep] LocalFrame*, const
String& url, int lineNumber); |
| 211 | 208 |
| 212 [Debugger, Timeline, Inline=FastReturn] | 209 [Debugger, Timeline, Inline=FastReturn] |
| 213 void didEvaluateScript(const InspectorInstrumentationCookie&); | 210 void didEvaluateScript(const InspectorInstrumentationCookie&); |
| 214 | 211 |
| 215 [PageRuntime, Inline=FastReturn] | 212 [PageRuntime, Inline=FastReturn] |
| 216 void didCreateIsolatedContext([Keep] LocalFrame*, ScriptState*, SecurityOrig
in*); | 213 void didCreateScriptContext([Keep] LocalFrame*, ScriptState*, SecurityOrigin
*, bool isMainWorldContext); |
| 214 |
| 215 [PageRuntime, Inline=FastReturn] |
| 216 void willReleaseScriptContext([Keep] LocalFrame*, ScriptState*); |
| 217 | 217 |
| 218 [AsyncCallStackTracker, DOMDebugger, Timeline, Inline=FastReturn] | 218 [AsyncCallStackTracker, DOMDebugger, Timeline, Inline=FastReturn] |
| 219 InspectorInstrumentationCookie willFireTimer([Keep] ExecutionContext*, int t
imerId); | 219 InspectorInstrumentationCookie willFireTimer([Keep] ExecutionContext*, int t
imerId); |
| 220 | 220 |
| 221 [AsyncCallStackTracker, Debugger, Timeline, Inline=FastReturn] | 221 [AsyncCallStackTracker, Debugger, Timeline, Inline=FastReturn] |
| 222 void didFireTimer(const InspectorInstrumentationCookie&); | 222 void didFireTimer(const InspectorInstrumentationCookie&); |
| 223 | 223 |
| 224 [Timeline, Inline=FastReturn] | 224 [Timeline, Inline=FastReturn] |
| 225 void didInvalidateLayout([Keep] LocalFrame*); | 225 void didInvalidateLayout([Keep] LocalFrame*); |
| 226 | 226 |
| (...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 530 interface InspectorCanvasInstrumentation { | 530 interface InspectorCanvasInstrumentation { |
| 531 | 531 |
| 532 #include "bindings/core/v8/ScriptValue.h" | 532 #include "bindings/core/v8/ScriptValue.h" |
| 533 | 533 |
| 534 [Canvas] | 534 [Canvas] |
| 535 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const
ScriptValue&); | 535 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const
ScriptValue&); |
| 536 | 536 |
| 537 [Canvas] | 537 [Canvas] |
| 538 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr
iptValue&); | 538 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr
iptValue&); |
| 539 } | 539 } |
| OLD | NEW |