| 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 | 105 |
| 106 [CSS, Inline=FastReturn] | 106 [CSS, Inline=FastReturn] |
| 107 void didCreateNamedFlow([Keep] Document*, NamedFlow*); | 107 void didCreateNamedFlow([Keep] Document*, NamedFlow*); |
| 108 | 108 |
| 109 [CSS, Inline=FastReturn] | 109 [CSS, Inline=FastReturn] |
| 110 void willRemoveNamedFlow([Keep] Document*, NamedFlow*); | 110 void willRemoveNamedFlow([Keep] Document*, NamedFlow*); |
| 111 | 111 |
| 112 [CSS, Inline=FastReturn] | 112 [CSS, Inline=FastReturn] |
| 113 void didUpdateRegionLayout([Keep] Document*, NamedFlow*); | 113 void didUpdateRegionLayout([Keep] Document*, NamedFlow*); |
| 114 | 114 |
| 115 [CSS, Inline=FastReturn] |
| 116 void didChangeRegionOverset([Keep] Document*, NamedFlow*); |
| 117 |
| 115 [DOMDebugger, Inline=FastReturn] | 118 [DOMDebugger, Inline=FastReturn] |
| 116 void willSendXMLHttpRequest(ScriptExecutionContext*, const String& url); | 119 void willSendXMLHttpRequest(ScriptExecutionContext*, const String& url); |
| 117 | 120 |
| 118 [DOMDebugger, Inline=FastReturn] | 121 [DOMDebugger, Inline=FastReturn] |
| 119 void didFireWebGLError(Document*, const String& errorName); | 122 void didFireWebGLError(Document*, const String& errorName); |
| 120 | 123 |
| 121 [Timeline, Inline=FastReturn] | 124 [Timeline, Inline=FastReturn] |
| 122 void didScheduleResourceRequest([Keep] Document*, const String& url); | 125 void didScheduleResourceRequest([Keep] Document*, const String& url); |
| 123 | 126 |
| 124 [DOMDebugger, Timeline, Inline=FastReturn] | 127 [DOMDebugger, Timeline, Inline=FastReturn] |
| (...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 494 interface InspectorCanvasInstrumentation { | 497 interface InspectorCanvasInstrumentation { |
| 495 | 498 |
| 496 #include "bindings/v8/ScriptObject.h" | 499 #include "bindings/v8/ScriptObject.h" |
| 497 | 500 |
| 498 [Canvas] | 501 [Canvas] |
| 499 ScriptObject wrapCanvas2DRenderingContextForInstrumentation(Document*, const
ScriptObject&); | 502 ScriptObject wrapCanvas2DRenderingContextForInstrumentation(Document*, const
ScriptObject&); |
| 500 | 503 |
| 501 [Canvas] | 504 [Canvas] |
| 502 ScriptObject wrapWebGLRenderingContextForInstrumentation(Document*, const Sc
riptObject&); | 505 ScriptObject wrapWebGLRenderingContextForInstrumentation(Document*, const Sc
riptObject&); |
| 503 } | 506 } |
| OLD | NEW |