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 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
218 [Resource, Page, Inline=FastReturn] | 218 [Resource, Page, 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([Keep] LocalFrame*, unsigned long identifier, DocumentL
oader*, ResourceRequest&, const ResourceResponse& redirectResponse, const FetchI
nitiatorInfo&); |
229 | 229 |
230 [Resource] | 230 [Resource] |
231 void markResourceAsCached(LocalFrame*, unsigned long identifier); | 231 void markResourceAsCached(LocalFrame*, unsigned long identifier); |
232 | 232 |
233 [Resource] | 233 [Resource] |
234 void didReceiveResourceResponse([Keep] LocalFrame*, unsigned long identifier
, DocumentLoader*, const ResourceResponse&, ResourceLoader*); | 234 void didReceiveResourceResponse([Keep] LocalFrame*, unsigned long identifier
, DocumentLoader*, const ResourceResponse&, ResourceLoader*); |
235 | 235 |
236 [Inline=Forward] | 236 [Inline=Forward] |
237 void continueAfterXFrameOptionsDenied(LocalFrame* frame, DocumentLoader* loa
der, unsigned long identifier, const ResourceResponse& r); | 237 void continueAfterXFrameOptionsDenied(LocalFrame* frame, DocumentLoader* loa
der, unsigned long identifier, const ResourceResponse& r); |
238 | 238 |
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
445 interface InspectorOverrides { | 445 interface InspectorOverrides { |
446 [CSS, Inline=FastReturn] | 446 [CSS, Inline=FastReturn] |
447 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud
oState); | 447 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud
oState); |
448 | 448 |
449 [Worker, Inline=FastReturn] | 449 [Worker, Inline=FastReturn] |
450 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context); | 450 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context); |
451 | 451 |
452 [Resource, Inline=FastReturn] | 452 [Resource, Inline=FastReturn] |
453 bool shouldForceCORSPreflight(Document*); | 453 bool shouldForceCORSPreflight(Document*); |
454 } | 454 } |
OLD | NEW |