| 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 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 208 | 208 |
| 209 [AsyncCallTracker, Inline=FastReturn] | 209 [AsyncCallTracker, Inline=FastReturn] |
| 210 void didDispatchXHRLoadendEvent(ExecutionContext*, XMLHttpRequest*); | 210 void didDispatchXHRLoadendEvent(ExecutionContext*, XMLHttpRequest*); |
| 211 | 211 |
| 212 [LayerTree, Inline=FastReturn] | 212 [LayerTree, Inline=FastReturn] |
| 213 void didPaint([Keep] LayoutObject*, const GraphicsLayer*, GraphicsContext*,
const LayoutRect&); | 213 void didPaint([Keep] LayoutObject*, const GraphicsLayer*, GraphicsContext*,
const LayoutRect&); |
| 214 | 214 |
| 215 [Resource, Inline=FastReturn] | 215 [Resource, Inline=FastReturn] |
| 216 InspectorInstrumentationCookie willRecalculateStyle([Keep] Document*); | 216 InspectorInstrumentationCookie willRecalculateStyle([Keep] Document*); |
| 217 | 217 |
| 218 [Resource, Page, Inline=FastReturn] | 218 [Resource, Inline=FastReturn] |
| 219 void didRecalculateStyle(const InspectorInstrumentationCookie&, int elementC
ount); | 219 void didRecalculateStyle(const InspectorInstrumentationCookie&, int elementC
ount); |
| 220 | 220 |
| 221 [Resource, Inline=FastReturn] | 221 [Resource, Inline=FastReturn] |
| 222 void didScheduleStyleRecalculation([Keep] Document*); | 222 void didScheduleStyleRecalculation([Keep] Document*); |
| 223 | 223 |
| 224 [Resource, Inline=FastReturn] | 224 [Resource, Inline=FastReturn] |
| 225 void applyUserAgentOverride(LocalFrame*, String* userAgent); | 225 void applyUserAgentOverride(LocalFrame*, String* userAgent); |
| 226 | 226 |
| 227 [Resource] | 227 [Resource] |
| 228 void willSendRequest(LocalFrame*, unsigned long identifier, DocumentLoader*,
ResourceRequest&, const ResourceResponse& redirectResponse, const FetchInitiato
rInfo&); | 228 void willSendRequest(LocalFrame*, unsigned long identifier, DocumentLoader*,
ResourceRequest&, const ResourceResponse& redirectResponse, const FetchInitiato
rInfo&); |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 436 interface InspectorOverrides { | 436 interface InspectorOverrides { |
| 437 [CSS, Inline=FastReturn] | 437 [CSS, Inline=FastReturn] |
| 438 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud
oState); | 438 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud
oState); |
| 439 | 439 |
| 440 [Worker, Inline=FastReturn] | 440 [Worker, Inline=FastReturn] |
| 441 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context); | 441 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context); |
| 442 | 442 |
| 443 [Resource, Inline=FastReturn] | 443 [Resource, Inline=FastReturn] |
| 444 bool shouldForceCORSPreflight(Document*); | 444 bool shouldForceCORSPreflight(Document*); |
| 445 } | 445 } |
| OLD | NEW |