Searched refs:ThreadableLoaderClient (Results 1 - 16 of 16) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/loader/
H A DThreadableLoaderClient.h40 class ThreadableLoaderClient { class in namespace:WebCore
41 WTF_MAKE_NONCOPYABLE(ThreadableLoaderClient); WTF_MAKE_FAST_ALLOCATED;
53 ThreadableLoaderClient() { } function in class:WebCore::ThreadableLoaderClient
54 virtual ~ThreadableLoaderClient() { }
H A DDocumentThreadableLoader.h51 class ThreadableLoaderClient;
56 static void loadResourceSynchronously(Document&, const ResourceRequest&, ThreadableLoaderClient&, const ThreadableLoaderOptions&);
57 static PassRefPtr<DocumentThreadableLoader> create(Document&, ThreadableLoaderClient&, const ResourceRequest&, const ThreadableLoaderOptions&);
76 DocumentThreadableLoader(Document&, ThreadableLoaderClient&, BlockingBehavior, const ResourceRequest&, const ThreadableLoaderOptions&);
103 ThreadableLoaderClient* m_client;
H A DThreadableLoader.cpp54 PassRefPtr<ThreadableLoader> ThreadableLoader::create(ScriptExecutionContext* context, ThreadableLoaderClient* client, const ResourceRequest& request, const ThreadableLoaderOptions& options)
65 void ThreadableLoader::loadResourceSynchronously(ScriptExecutionContext* context, const ResourceRequest& request, ThreadableLoaderClient& client, const ThreadableLoaderOptions& options)
H A DThreadableLoader.h51 class ThreadableLoaderClient;
82 static void loadResourceSynchronously(ScriptExecutionContext*, const ResourceRequest&, ThreadableLoaderClient&, const ThreadableLoaderOptions&);
83 static PassRefPtr<ThreadableLoader> create(ScriptExecutionContext*, ThreadableLoaderClient*, const ResourceRequest&, const ThreadableLoaderOptions&);
H A DThreadableLoaderClientWrapper.h34 #include "ThreadableLoaderClient.h"
43 static PassRefPtr<ThreadableLoaderClientWrapper> create(ThreadableLoaderClient* client)
112 explicit ThreadableLoaderClientWrapper(ThreadableLoaderClient* client)
118 ThreadableLoaderClient* m_client;
H A DWorkerThreadableLoader.h35 #include "ThreadableLoaderClient.h"
57 static void loadResourceSynchronously(WorkerGlobalScope*, const ResourceRequest&, ThreadableLoaderClient&, const ThreadableLoaderOptions&);
58 static PassRefPtr<WorkerThreadableLoader> create(WorkerGlobalScope* workerGlobalScope, ThreadableLoaderClient* client, const String& taskMode, const ResourceRequest& request, const ThreadableLoaderOptions& options)
96 class MainThreadBridge : public ThreadableLoaderClient {
135 WorkerThreadableLoader(WorkerGlobalScope*, ThreadableLoaderClient*, const String& taskMode, const ResourceRequest&, const ThreadableLoaderOptions&);
H A DWorkerThreadableLoader.cpp53 WorkerThreadableLoader::WorkerThreadableLoader(WorkerGlobalScope* workerGlobalScope, ThreadableLoaderClient* client, const String& taskMode, const ResourceRequest& request, const ThreadableLoaderOptions& options)
65 void WorkerThreadableLoader::loadResourceSynchronously(WorkerGlobalScope* workerGlobalScope, const ResourceRequest& request, ThreadableLoaderClient& client, const ThreadableLoaderOptions& options)
H A DDocumentThreadableLoader.cpp48 #include "ThreadableLoaderClient.h"
58 void DocumentThreadableLoader::loadResourceSynchronously(Document& document, const ResourceRequest& request, ThreadableLoaderClient& client, const ThreadableLoaderOptions& options)
65 PassRefPtr<DocumentThreadableLoader> DocumentThreadableLoader::create(Document& document, ThreadableLoaderClient& client, const ResourceRequest& request, const ThreadableLoaderOptions& options)
73 DocumentThreadableLoader::DocumentThreadableLoader(Document& document, ThreadableLoaderClient& client, BlockingBehavior blockingBehavior, const ResourceRequest& request, const ThreadableLoaderOptions& options)
/macosx-10.10/WebCore-7600.1.25/inspector/
H A DInspectorResourceAgent.h67 class ThreadableLoaderClient;
98 void documentThreadableLoaderStartedLoadingForClient(unsigned long identifier, ThreadableLoaderClient*);
99 void willLoadXHR(ThreadableLoaderClient*, const String& method, const URL&, bool async, PassRefPtr<FormData> body, const HTTPHeaderMap& headers, bool includeCrendentials);
100 void didFailXHRLoading(ThreadableLoaderClient*);
101 void didFinishXHRLoading(ThreadableLoaderClient*, unsigned long identifier, const String& sourceString);
153 typedef HashMap<ThreadableLoaderClient*, RefPtr<XHRReplayData>> PendingXHRReplayDataMap;
H A DInspectorInstrumentation.h101 class ThreadableLoaderClient;
189 static void documentThreadableLoaderStartedLoadingForClient(ScriptExecutionContext*, unsigned long identifier, ThreadableLoaderClient*);
190 static void willLoadXHR(ScriptExecutionContext*, ThreadableLoaderClient*, const String&, const URL&, bool, PassRefPtr<FormData>, const HTTPHeaderMap&, bool);
191 static void didFailXHRLoading(ScriptExecutionContext*, ThreadableLoaderClient*);
192 static void didFinishXHRLoading(ScriptExecutionContext*, ThreadableLoaderClient*, unsigned long identifier, const String& sourceString, const String& url, const String& sendURL, unsigned sendLineNumber, unsigned sendColumnNumber);
388 static void documentThreadableLoaderStartedLoadingForClientImpl(InstrumentingAgents*, unsigned long identifier, ThreadableLoaderClient*);
389 static void willLoadXHRImpl(InstrumentingAgents*, ThreadableLoaderClient*, const String&, const URL&, bool, PassRefPtr<FormData>, const HTTPHeaderMap&, bool);
390 static void didFailXHRLoadingImpl(InstrumentingAgents*, ThreadableLoaderClient*);
391 static void didFinishXHRLoadingImpl(InstrumentingAgents*, ThreadableLoaderClient*, unsigned long identifier, const String& sourceString, const String& url, const String& sendURL, unsigned sendLineNumber, unsigned sendColumnNumber);
1388 inline void InspectorInstrumentation::documentThreadableLoaderStartedLoadingForClient(ScriptExecutionContext* context, unsigned long identifier, ThreadableLoaderClient* clien
[all...]
H A DInspectorResourceAgent.cpp64 #include "ThreadableLoaderClient.h"
84 class InspectorThreadableLoaderClient final : public ThreadableLoaderClient {
472 void InspectorResourceAgent::documentThreadableLoaderStartedLoadingForClient(unsigned long identifier, ThreadableLoaderClient* client)
486 void InspectorResourceAgent::willLoadXHR(ThreadableLoaderClient* client, const String& method, const URL& url, bool async, PassRefPtr<FormData> formData, const HTTPHeaderMap& headers, bool includeCredentials)
493 void InspectorResourceAgent::didFailXHRLoading(ThreadableLoaderClient* client)
498 void InspectorResourceAgent::didFinishXHRLoading(ThreadableLoaderClient* client, unsigned long identifier, const String& sourceString)
H A DInspectorInstrumentation.cpp657 void InspectorInstrumentation::documentThreadableLoaderStartedLoadingForClientImpl(InstrumentingAgents* instrumentingAgents, unsigned long identifier, ThreadableLoaderClient* client)
663 void InspectorInstrumentation::willLoadXHRImpl(InstrumentingAgents* instrumentingAgents, ThreadableLoaderClient* client, const String& method, const URL& url, bool async, PassRefPtr<FormData> formData, const HTTPHeaderMap& headers, bool includeCredentials)
669 void InspectorInstrumentation::didFailXHRLoadingImpl(InstrumentingAgents* instrumentingAgents, ThreadableLoaderClient* client)
675 void InspectorInstrumentation::didFinishXHRLoadingImpl(InstrumentingAgents* instrumentingAgents, ThreadableLoaderClient* client, unsigned long identifier, const String& sourceString, const String& url, const String& sendURL, unsigned sendLineNumber, unsigned sendColumnNumber)
/macosx-10.10/WebCore-7600.1.25/fileapi/
H A DFileReaderLoader.h37 #include "ThreadableLoaderClient.h"
53 class FileReaderLoader : public ThreadableLoaderClient {
70 // ThreadableLoaderClient
/macosx-10.10/WebCore-7600.1.25/workers/
H A DWorkerScriptLoader.h34 #include "ThreadableLoaderClient.h"
49 class WorkerScriptLoader : public RefCounted<WorkerScriptLoader>, public ThreadableLoaderClient {
/macosx-10.10/WebCore-7600.1.25/page/
H A DEventSource.h38 #include "ThreadableLoaderClient.h"
51 class EventSource final : public RefCounted<EventSource>, public EventTargetWithInlineData, private ThreadableLoaderClient, public ActiveDOMObject {
/macosx-10.10/WebCore-7600.1.25/xml/
H A DXMLHttpRequest.h32 #include "ThreadableLoaderClient.h"
53 class XMLHttpRequest final : public ScriptWrappable, public RefCounted<XMLHttpRequest>, public EventTargetWithInlineData, private ThreadableLoaderClient, public ActiveDOMObject {

Completed in 186 milliseconds