| 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 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 [Resource] | 272 [Resource] |
| 273 void willDispachEventSourceEvent(ExecutionContext*, ThreadableLoaderClient*
eventSource, const AtomicString& eventName, const AtomicString& eventId, const V
ector<UChar>& data); | 273 void willDispachEventSourceEvent(ExecutionContext*, ThreadableLoaderClient*
eventSource, const AtomicString& eventName, const AtomicString& eventId, const V
ector<UChar>& data); |
| 274 | 274 |
| 275 [Resource] | 275 [Resource] |
| 276 void didFinishEventSourceRequest(ExecutionContext*, ThreadableLoaderClient*
eventSource); | 276 void didFinishEventSourceRequest(ExecutionContext*, ThreadableLoaderClient*
eventSource); |
| 277 | 277 |
| 278 [AsyncCallTracker, Resource] | 278 [AsyncCallTracker, Resource] |
| 279 void willLoadXHR(ExecutionContext*, XMLHttpRequest* xhr, ThreadableLoaderCli
ent* client, const AtomicString& method, const KURL& url, bool async, PassRefPtr
<FormData>, const HTTPHeaderMap& headers, bool includeCredentials); | 279 void willLoadXHR(ExecutionContext*, XMLHttpRequest* xhr, ThreadableLoaderCli
ent* client, const AtomicString& method, const KURL& url, bool async, PassRefPtr
<FormData>, const HTTPHeaderMap& headers, bool includeCredentials); |
| 280 | 280 |
| 281 [Resource] | 281 [Resource] |
| 282 void didFailXHRLoading(ExecutionContext*, XMLHttpRequest* xhr, ThreadableLoa
derClient* client); | 282 void didFailXHRLoading([Keep] ExecutionContext*, XMLHttpRequest* xhr, Thread
ableLoaderClient* client, const AtomicString& method, const String& url); |
| 283 | 283 |
| 284 [Resource] | 284 [Resource] |
| 285 void didFinishXHRLoading([Keep] ExecutionContext*, XMLHttpRequest* xhr, Thre
adableLoaderClient* client, unsigned long identifier, ScriptString sourceString,
const AtomicString& method, const String& url); | 285 void didFinishXHRLoading([Keep] ExecutionContext*, XMLHttpRequest* xhr, Thre
adableLoaderClient* client, const AtomicString& method, const String& url); |
| 286 | 286 |
| 287 [Resource] | 287 [Resource] |
| 288 void scriptImported(ExecutionContext*, unsigned long identifier, const Strin
g& sourceString); | 288 void scriptImported(ExecutionContext*, unsigned long identifier, const Strin
g& sourceString); |
| 289 | 289 |
| 290 [Debugger] | 290 [Debugger] |
| 291 void scriptExecutionBlockedByCSP(ExecutionContext*, const String& directiveT
ext); | 291 void scriptExecutionBlockedByCSP(ExecutionContext*, const String& directiveT
ext); |
| 292 | 292 |
| 293 [Resource] | 293 [Resource] |
| 294 void didReceiveScriptResponse(ExecutionContext*, unsigned long identifier); | 294 void didReceiveScriptResponse(ExecutionContext*, unsigned long identifier); |
| 295 | 295 |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 448 interface InspectorOverrides { | 448 interface InspectorOverrides { |
| 449 [CSS, Inline=FastReturn] | 449 [CSS, Inline=FastReturn] |
| 450 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud
oState); | 450 bool forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseud
oState); |
| 451 | 451 |
| 452 [Worker, Inline=FastReturn] | 452 [Worker, Inline=FastReturn] |
| 453 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context); | 453 bool shouldPauseDedicatedWorkerOnStart(ExecutionContext* context); |
| 454 | 454 |
| 455 [Resource, Inline=FastReturn] | 455 [Resource, Inline=FastReturn] |
| 456 bool shouldForceCORSPreflight(Document*); | 456 bool shouldForceCORSPreflight(Document*); |
| 457 } | 457 } |
| OLD | NEW |