| 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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 | 111 |
| 112 [CSS, Inline=FastReturn] | 112 [CSS, Inline=FastReturn] |
| 113 void mediaQueryResultChanged(Document*); | 113 void mediaQueryResultChanged(Document*); |
| 114 | 114 |
| 115 [DOM, Inline=FastReturn] | 115 [DOM, Inline=FastReturn] |
| 116 void didPushShadowRoot([Keep] Element* host, ShadowRoot*); | 116 void didPushShadowRoot([Keep] Element* host, ShadowRoot*); |
| 117 | 117 |
| 118 [DOM, Inline=FastReturn] | 118 [DOM, Inline=FastReturn] |
| 119 void willPopShadowRoot([Keep] Element* host, ShadowRoot*); | 119 void willPopShadowRoot([Keep] Element* host, ShadowRoot*); |
| 120 | 120 |
| 121 [CSS, Inline=FastReturn] | |
| 122 void didCreateNamedFlow([Keep] Document*, NamedFlow*); | |
| 123 | |
| 124 [CSS, Inline=FastReturn] | |
| 125 void willRemoveNamedFlow([Keep] Document*, NamedFlow*); | |
| 126 | |
| 127 [CSS, Inline=FastReturn] | |
| 128 void didUpdateRegionLayout([Keep] Document*, NamedFlow*); | |
| 129 | |
| 130 [CSS, Inline=FastReturn] | |
| 131 void didChangeRegionOverset([Keep] Document*, NamedFlow*); | |
| 132 | |
| 133 [DOMDebugger, Inline=FastReturn] | 121 [DOMDebugger, Inline=FastReturn] |
| 134 void willSendXMLHttpRequest(ExecutionContext*, const String& url); | 122 void willSendXMLHttpRequest(ExecutionContext*, const String& url); |
| 135 | 123 |
| 136 [DOMDebugger, Inline=FastReturn] | 124 [DOMDebugger, Inline=FastReturn] |
| 137 void didFireWebGLError(Element*, const String& errorName); | 125 void didFireWebGLError(Element*, const String& errorName); |
| 138 | 126 |
| 139 [DOMDebugger, Inline=FastReturn] | 127 [DOMDebugger, Inline=FastReturn] |
| 140 void didFireWebGLWarning(Element*); | 128 void didFireWebGLWarning(Element*); |
| 141 | 129 |
| 142 [DOMDebugger, Inline=FastReturn] | 130 [DOMDebugger, Inline=FastReturn] |
| (...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 529 interface InspectorCanvasInstrumentation { | 517 interface InspectorCanvasInstrumentation { |
| 530 | 518 |
| 531 #include "bindings/v8/ScriptObject.h" | 519 #include "bindings/v8/ScriptObject.h" |
| 532 | 520 |
| 533 [Canvas] | 521 [Canvas] |
| 534 ScriptObject wrapCanvas2DRenderingContextForInstrumentation(Document*, const
ScriptObject&); | 522 ScriptObject wrapCanvas2DRenderingContextForInstrumentation(Document*, const
ScriptObject&); |
| 535 | 523 |
| 536 [Canvas] | 524 [Canvas] |
| 537 ScriptObject wrapWebGLRenderingContextForInstrumentation(Document*, const Sc
riptObject&); | 525 ScriptObject wrapWebGLRenderingContextForInstrumentation(Document*, const Sc
riptObject&); |
| 538 } | 526 } |
| OLD | NEW |