| 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 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 [Page, Inline=FastReturn] | 197 [Page, Inline=FastReturn] |
| 198 void didUpdateLayout(LocalFrame*); | 198 void didUpdateLayout(LocalFrame*); |
| 199 | 199 |
| 200 [Page, Inline=FastReturn] | 200 [Page, Inline=FastReturn] |
| 201 void didResizeMainFrame(LocalFrame*); | 201 void didResizeMainFrame(LocalFrame*); |
| 202 | 202 |
| 203 [AsyncCallTracker, Inline=FastReturn] | 203 [AsyncCallTracker, Inline=FastReturn] |
| 204 void didDispatchXHRLoadendEvent(ExecutionContext*, XMLHttpRequest*); | 204 void didDispatchXHRLoadendEvent(ExecutionContext*, XMLHttpRequest*); |
| 205 | 205 |
| 206 [LayerTree, Inline=FastReturn] | 206 [LayerTree, Inline=FastReturn] |
| 207 void didPaint([Keep] LayoutObject*, const GraphicsLayer*, GraphicsContext*,
const LayoutRect&); | 207 void didPaint([Keep] LayoutObject*, const GraphicsLayer*, GraphicsContext&,
const LayoutRect&); |
| 208 | 208 |
| 209 [Resource, Inline=FastReturn] | 209 [Resource, Inline=FastReturn] |
| 210 InspectorInstrumentationCookie willRecalculateStyle([Keep] Document*); | 210 InspectorInstrumentationCookie willRecalculateStyle([Keep] Document*); |
| 211 | 211 |
| 212 [Resource, Page, Inline=FastReturn] | 212 [Resource, Page, Inline=FastReturn] |
| 213 void didRecalculateStyle(const InspectorInstrumentationCookie&, int elementC
ount); | 213 void didRecalculateStyle(const InspectorInstrumentationCookie&, int elementC
ount); |
| 214 | 214 |
| 215 [Resource, Inline=FastReturn] | 215 [Resource, Inline=FastReturn] |
| 216 void didScheduleStyleRecalculation([Keep] Document*); | 216 void didScheduleStyleRecalculation([Keep] Document*); |
| 217 | 217 |
| (...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 442 interface InspectorOverrides { | 442 interface InspectorOverrides { |
| 443 [CSS, Inline=FastReturn] | 443 [CSS, Inline=FastReturn] |
| 444 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud
oState); | 444 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud
oState); |
| 445 | 445 |
| 446 [Worker, Inline=FastReturn] | 446 [Worker, Inline=FastReturn] |
| 447 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context); | 447 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context); |
| 448 | 448 |
| 449 [Resource, Inline=FastReturn] | 449 [Resource, Inline=FastReturn] |
| 450 bool shouldForceCORSPreflight(Document*); | 450 bool shouldForceCORSPreflight(Document*); |
| 451 } | 451 } |
| OLD | NEW |