| 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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 void mediaQueryResultChanged(Document*); | 81 void mediaQueryResultChanged(Document*); |
| 82 void didPushShadowRoot([Keep] Element* host, ShadowRoot*); | 82 void didPushShadowRoot([Keep] Element* host, ShadowRoot*); |
| 83 void willPopShadowRoot([Keep] Element* host, ShadowRoot*); | 83 void willPopShadowRoot([Keep] Element* host, ShadowRoot*); |
| 84 void willSendXMLHttpOrFetchNetworkRequest(ExecutionContext*, const String& url
); | 84 void willSendXMLHttpOrFetchNetworkRequest(ExecutionContext*, const String& url
); |
| 85 void didCreateCanvasContext(Document*); | 85 void didCreateCanvasContext(Document*); |
| 86 void didFireWebGLError(Element*, const String& errorName); | 86 void didFireWebGLError(Element*, const String& errorName); |
| 87 void didFireWebGLWarning(Element*); | 87 void didFireWebGLWarning(Element*); |
| 88 void didFireWebGLErrorOrWarning(Element*, const String& message); | 88 void didFireWebGLErrorOrWarning(Element*, const String& message); |
| 89 void didResizeMainFrame(LocalFrame*); | 89 void didResizeMainFrame(LocalFrame*); |
| 90 void didPaint(LocalFrame*, const GraphicsLayer*, GraphicsContext&, const Layou
tRect&); | 90 void didPaint(LocalFrame*, const GraphicsLayer*, GraphicsContext&, const Layou
tRect&); |
| 91 void applyUserAgentOverride(LocalFrame*, String* userAgent); | 91 void applyUserAgentOverride(ExecutionContext*, String* userAgent); |
| 92 void didBlockRequest([Keep] LocalFrame*, const ResourceRequest&, DocumentLoade
r*, const FetchInitiatorInfo&, ResourceRequestBlockedReason); | 92 void didBlockRequest(ExecutionContext*, const ResourceRequest&, DocumentLoader
*, const FetchInitiatorInfo&, ResourceRequestBlockedReason); |
| 93 void didChangeResourcePriority(LocalFrame*, unsigned long identifier, Resource
LoadPriority loadPriority); | 93 void didChangeResourcePriority(LocalFrame*, unsigned long identifier, Resource
LoadPriority loadPriority); |
| 94 void willSendRequest([Keep] LocalFrame*, unsigned long identifier, DocumentLoa
der*, ResourceRequest&, const ResourceResponse& redirectResponse, const FetchIni
tiatorInfo&); | 94 void willSendRequest(ExecutionContext*, unsigned long identifier, DocumentLoad
er*, ResourceRequest&, const ResourceResponse& redirectResponse, const FetchInit
iatorInfo&); |
| 95 void markResourceAsCached(LocalFrame*, unsigned long identifier); | 95 void markResourceAsCached(LocalFrame*, unsigned long identifier); |
| 96 void didReceiveResourceResponse([Keep] LocalFrame*, unsigned long identifier,
DocumentLoader*, const ResourceResponse&, Resource*); | 96 void didReceiveResourceResponse(ExecutionContext*, unsigned long identifier, D
ocumentLoader*, const ResourceResponse&, Resource*); |
| 97 void didReceiveData([Keep] LocalFrame*, unsigned long identifier, const char*
data, int dataLength); | 97 void didReceiveData(ExecutionContext*, unsigned long identifier, DocumentLoade
r*, const char* data, int dataLength); |
| 98 void didReceiveEncodedDataLength([Keep] LocalFrame*, unsigned long identifier,
int encodedDataLength); | 98 void didReceiveEncodedDataLength(ExecutionContext*, unsigned long identifier,
int encodedDataLength); |
| 99 void didFinishLoading([Keep] LocalFrame* frame, unsigned long identifier, doub
le finishTime, int64_t encodedDataLength, int64_t decodedBodyLength); | 99 void didFinishLoading(ExecutionContext* frame, unsigned long identifier, Docum
entLoader*, double finishTime, int64_t encodedDataLength, int64_t decodedBodyLen
gth); |
| 100 void didReceiveCORSRedirectResponse([Keep] LocalFrame*, unsigned long identifi
er, DocumentLoader*, const ResourceResponse&, Resource*); | 100 void didReceiveCORSRedirectResponse([Keep] LocalFrame*, unsigned long identifi
er, DocumentLoader*, const ResourceResponse&, Resource*); |
| 101 void didFailLoading(LocalFrame* frame, unsigned long identifier, const Resourc
eError&); | 101 void didFailLoading(ExecutionContext*, unsigned long identifier, const Resourc
eError&); |
| 102 void documentThreadableLoaderStartedLoadingForClient(ExecutionContext*, unsign
ed long identifier, ThreadableLoaderClient* client); | 102 void documentThreadableLoaderStartedLoadingForClient(ExecutionContext*, unsign
ed long identifier, ThreadableLoaderClient* client); |
| 103 void documentThreadableLoaderFailedToStartLoadingForClient(ExecutionContext*,
ThreadableLoaderClient* client); | 103 void documentThreadableLoaderFailedToStartLoadingForClient(ExecutionContext*,
ThreadableLoaderClient* client); |
| 104 void willSendEventSourceRequest(ExecutionContext*, ThreadableLoaderClient* eve
ntSource); | 104 void willSendEventSourceRequest(ExecutionContext*, ThreadableLoaderClient* eve
ntSource); |
| 105 void willDispatchEventSourceEvent(ExecutionContext*, ThreadableLoaderClient* e
ventSource, const AtomicString& eventName, const AtomicString& eventId, const St
ring& data); | 105 void willDispatchEventSourceEvent(ExecutionContext*, ThreadableLoaderClient* e
ventSource, const AtomicString& eventName, const AtomicString& eventId, const St
ring& data); |
| 106 void didFinishEventSourceRequest(ExecutionContext*, ThreadableLoaderClient* ev
entSource); | 106 void didFinishEventSourceRequest(ExecutionContext*, ThreadableLoaderClient* ev
entSource); |
| 107 void willLoadXHR(ExecutionContext*, XMLHttpRequest* xhr, ThreadableLoaderClien
t* client, const AtomicString& method, const KURL& url, bool async, PassRefPtr<E
ncodedFormData>, const HTTPHeaderMap& headers, bool includeCredentials); | 107 void willLoadXHR(ExecutionContext*, XMLHttpRequest* xhr, ThreadableLoaderClien
t* client, const AtomicString& method, const KURL& url, bool async, PassRefPtr<E
ncodedFormData>, const HTTPHeaderMap& headers, bool includeCredentials); |
| 108 void didFailXHRLoading([Keep] ExecutionContext*, XMLHttpRequest* xhr, Threadab
leLoaderClient* client, const AtomicString& method, const String& url); | 108 void didFailXHRLoading([Keep] ExecutionContext*, XMLHttpRequest* xhr, Threadab
leLoaderClient* client, const AtomicString& method, const String& url); |
| 109 void didFinishXHRLoading([Keep] ExecutionContext*, XMLHttpRequest* xhr, Thread
ableLoaderClient* client, const AtomicString& method, const String& url); | 109 void didFinishXHRLoading([Keep] ExecutionContext*, XMLHttpRequest* xhr, Thread
ableLoaderClient* client, const AtomicString& method, const String& url); |
| 110 void willStartFetch(ExecutionContext*, ThreadableLoaderClient*); | 110 void willStartFetch(ExecutionContext*, ThreadableLoaderClient*); |
| 111 void didFailFetch(ExecutionContext*, ThreadableLoaderClient*); | 111 void didFailFetch(ExecutionContext*, ThreadableLoaderClient*); |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 void breakableLocation(ExecutionContext* context, const char* name); | 152 void breakableLocation(ExecutionContext* context, const char* name); |
| 153 RecalculateStyle(Document* document); | 153 RecalculateStyle(Document* document); |
| 154 UpdateLayout(Document*); | 154 UpdateLayout(Document*); |
| 155 ExecuteScript([Keep] ExecutionContext* context); | 155 ExecuteScript([Keep] ExecutionContext* context); |
| 156 CallFunction([Keep] ExecutionContext* context, v8::Local<v8::Function> functio
n, int depth = 0); | 156 CallFunction([Keep] ExecutionContext* context, v8::Local<v8::Function> functio
n, int depth = 0); |
| 157 UserCallback([Keep] ExecutionContext* context, const char* name, const AtomicS
tring& atomicName, bool recurring, EventTarget* eventTarget = nullptr); | 157 UserCallback([Keep] ExecutionContext* context, const char* name, const AtomicS
tring& atomicName, bool recurring, EventTarget* eventTarget = nullptr); |
| 158 ParseHTML(Document* document, HTMLDocumentParser* parser); | 158 ParseHTML(Document* document, HTMLDocumentParser* parser); |
| 159 void forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseudoS
tate, bool* result); | 159 void forcePseudoState([Keep] Element* element, CSSSelector::PseudoType pseudoS
tate, bool* result); |
| 160 void shouldWaitForDebuggerOnWorkerStart(ExecutionContext* context, bool* resul
t); | 160 void shouldWaitForDebuggerOnWorkerStart(ExecutionContext* context, bool* resul
t); |
| 161 void shouldForceCORSPreflight(Document*, bool* result); | 161 void shouldForceCORSPreflight(Document*, bool* result); |
| 162 void shouldBlockRequest(LocalFrame*, const ResourceRequest&, bool* result); | 162 void shouldBlockRequest(ExecutionContext*, const ResourceRequest&, bool* resul
t); |
| 163 } | 163 } |
| OLD | NEW |