HomeSort by relevance Sort by last modified time
    Searched refs:MainThreadBridge (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/loader/
WorkerThreadableLoader.cpp 57 , m_bridge(*(new MainThreadBridge(m_workerClientWrapper, clientBridge, workerGlobalScope.thread()->workerLoaderProxy(), request, options, resourceLoaderOptions, workerGlobalScope.url().strippedForUseAsReferrer())))
108 WorkerThreadableLoader::MainThreadBridge::MainThreadBridge(
123 createCrossThreadTask(&MainThreadBridge::mainThreadCreateLoader, AllowCrossThreadAccess(this), request, options, resourceLoaderOptions, outgoingReferrer));
126 WorkerThreadableLoader::MainThreadBridge::~MainThreadBridge()
130 void WorkerThreadableLoader::MainThreadBridge::mainThreadCreateLoader(ExecutionContext* context, MainThreadBridge* thisPtr, PassOwnPtr<CrossThreadResourceRequestData> requestData, ThreadableLoaderOptions options, ResourceLoaderOptions resourceLoaderOptions, const String& outgoingReferrer)
145 void WorkerThreadableLoader::MainThreadBridge::mainThreadDestroy(ExecutionContext* context, MainThreadBridge* thisPtr
    [all...]
WorkerThreadableLoader.h 74 // the last task posted always is "mainThreadDestroy", so MainThreadBridge is
87 class MainThreadBridge FINAL : public ThreadableLoaderClient {
90 MainThreadBridge(PassRefPtr<ThreadableLoaderClientWrapper>, PassOwnPtr<ThreadableLoaderClient>, WorkerLoaderProxy&, const ResourceRequest&, const ThreadableLoaderOptions&, const ResourceLoaderOptions&, const String& outgoingReferrer);
100 static void mainThreadDestroy(ExecutionContext*, MainThreadBridge*);
101 virtual ~MainThreadBridge();
103 static void mainThreadCreateLoader(ExecutionContext*, MainThreadBridge*, PassOwnPtr<CrossThreadResourceRequestData>, ThreadableLoaderOptions, ResourceLoaderOptions, const String& outgoingReferrer);
104 static void mainThreadOverrideTimeout(ExecutionContext*, MainThreadBridge*, unsigned long timeoutMilliseconds);
105 static void mainThreadCancel(ExecutionContext*, MainThreadBridge*);
132 MainThreadBridge& m_bridge;

Completed in 333 milliseconds