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 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
257 [Resource] | 257 [Resource] |
258 void willSendEventSourceRequest(ExecutionContext*, ThreadableLoaderClient* e
ventSource); | 258 void willSendEventSourceRequest(ExecutionContext*, ThreadableLoaderClient* e
ventSource); |
259 | 259 |
260 [Resource] | 260 [Resource] |
261 void willDispachEventSourceEvent(ExecutionContext*, ThreadableLoaderClient*
eventSource, const AtomicString& eventName, const AtomicString& eventId, const V
ector<UChar>& data); | 261 void willDispachEventSourceEvent(ExecutionContext*, ThreadableLoaderClient*
eventSource, const AtomicString& eventName, const AtomicString& eventId, const V
ector<UChar>& data); |
262 | 262 |
263 [Resource] | 263 [Resource] |
264 void didFinishEventSourceRequest(ExecutionContext*, ThreadableLoaderClient*
eventSource); | 264 void didFinishEventSourceRequest(ExecutionContext*, ThreadableLoaderClient*
eventSource); |
265 | 265 |
266 [AsyncCallTracker, Resource] | 266 [AsyncCallTracker, Resource] |
267 void willLoadXHR(ExecutionContext*, XMLHttpRequest* xhr, ThreadableLoaderCli
ent* client, const AtomicString& method, const KURL& url, bool async, PassRefPtr
<FormData>, const HTTPHeaderMap& headers, bool includeCredentials); | 267 void willLoadXHR(ExecutionContext*, XMLHttpRequest* xhr, ThreadableLoaderCli
ent* client, const AtomicString& method, const KURL& url, bool async, PassRefPtr
<EncodedFormData>, const HTTPHeaderMap& headers, bool includeCredentials); |
268 | 268 |
269 [Resource] | 269 [Resource] |
270 void didFailXHRLoading([Keep] ExecutionContext*, XMLHttpRequest* xhr, Thread
ableLoaderClient* client, const AtomicString& method, const String& url); | 270 void didFailXHRLoading([Keep] ExecutionContext*, XMLHttpRequest* xhr, Thread
ableLoaderClient* client, const AtomicString& method, const String& url); |
271 | 271 |
272 [Resource] | 272 [Resource] |
273 void didFinishXHRLoading([Keep] ExecutionContext*, XMLHttpRequest* xhr, Thre
adableLoaderClient* client, const AtomicString& method, const String& url); | 273 void didFinishXHRLoading([Keep] ExecutionContext*, XMLHttpRequest* xhr, Thre
adableLoaderClient* client, const AtomicString& method, const String& url); |
274 | 274 |
275 [Resource] | 275 [Resource] |
276 void willStartFetch(ExecutionContext*, ThreadableLoaderClient*); | 276 void willStartFetch(ExecutionContext*, ThreadableLoaderClient*); |
277 | 277 |
(...skipping 167 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 |