| 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 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 [PageRuntime, Inline=FastReturn] | 200 [PageRuntime, Inline=FastReturn] |
| 201 void willReleaseScriptContext([Keep] LocalFrame*, ScriptState*); | 201 void willReleaseScriptContext([Keep] LocalFrame*, ScriptState*); |
| 202 | 202 |
| 203 [AsyncCallTracker, DOMDebugger, Inline=FastReturn] | 203 [AsyncCallTracker, DOMDebugger, Inline=FastReturn] |
| 204 InspectorInstrumentationCookie willFireTimer([Keep] ExecutionContext*, int t
imerId); | 204 InspectorInstrumentationCookie willFireTimer([Keep] ExecutionContext*, int t
imerId); |
| 205 | 205 |
| 206 [AsyncCallTracker, Debugger, Inline=FastReturn] | 206 [AsyncCallTracker, Debugger, Inline=FastReturn] |
| 207 void didFireTimer(const InspectorInstrumentationCookie&); | 207 void didFireTimer(const InspectorInstrumentationCookie&); |
| 208 | 208 |
| 209 [Page, Inline=FastReturn] | 209 [Page, Inline=FastReturn] |
| 210 void didLayout(LocalFrame*, LayoutObject* root); | 210 void didLayout(LocalFrame*); |
| 211 | 211 |
| 212 [Page, Inline=FastReturn] | 212 [Page, Inline=FastReturn] |
| 213 void didScroll(LocalFrame*); | 213 void didScroll(LocalFrame*); |
| 214 | 214 |
| 215 [Page, Inline=FastReturn] | 215 [Page, Inline=FastReturn] |
| 216 void didResizeMainFrame(LocalFrame*); | 216 void didResizeMainFrame(LocalFrame*); |
| 217 | 217 |
| 218 [AsyncCallTracker, Inline=FastReturn] | 218 [AsyncCallTracker, Inline=FastReturn] |
| 219 void didDispatchXHRLoadendEvent(ExecutionContext*, XMLHttpRequest*); | 219 void didDispatchXHRLoadendEvent(ExecutionContext*, XMLHttpRequest*); |
| 220 | 220 |
| (...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 469 interface InspectorCanvasInstrumentation { | 469 interface InspectorCanvasInstrumentation { |
| 470 | 470 |
| 471 #include "bindings/core/v8/ScriptValue.h" | 471 #include "bindings/core/v8/ScriptValue.h" |
| 472 | 472 |
| 473 [Canvas] | 473 [Canvas] |
| 474 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const
ScriptValue&); | 474 ScriptValue wrapCanvas2DRenderingContextForInstrumentation(Document*, const
ScriptValue&); |
| 475 | 475 |
| 476 [Canvas] | 476 [Canvas] |
| 477 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr
iptValue&); | 477 ScriptValue wrapWebGLRenderingContextForInstrumentation(Document*, const Scr
iptValue&); |
| 478 } | 478 } |
| OLD | NEW |