Searched defs:SharedWorkerThread (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/workers/
H A DSharedWorkerThread.h39 class SharedWorkerThread : public WorkerThread { class in namespace:WebCore
41 static PassRefPtr<SharedWorkerThread> create(const String& name, const KURL&, const String& userAgent, const String& sourceCode, WorkerLoaderProxy&, WorkerReportingProxy&);
42 ~SharedWorkerThread();
48 SharedWorkerThread(const String& name, const KURL&, const String& userAgent, const String& sourceCode, WorkerLoaderProxy&, WorkerReportingProxy&);
H A DSharedWorkerThread.cpp35 #include "SharedWorkerThread.h"
41 PassRefPtr<SharedWorkerThread> SharedWorkerThread::create(const String& name, const KURL& scriptURL, const String& userAgent, const String& sourceCode, WorkerLoaderProxy& workerLoaderProxy, WorkerReportingProxy& workerReportingProxy)
43 return adoptRef(new SharedWorkerThread(name, scriptURL, userAgent, sourceCode, workerLoaderProxy, workerReportingProxy));
46 SharedWorkerThread::SharedWorkerThread(const String& name, const KURL& url, const String& userAgent, const String& sourceCode, WorkerLoaderProxy& workerLoaderProxy, WorkerReportingProxy& workerReportingProxy) function in class:WebCore::SharedWorkerThread
52 SharedWorkerThread::~SharedWorkerThread()
56 PassRefPtr<WorkerContext> SharedWorkerThread::createWorkerContext(const KURL& url, const String& userAgent)

Completed in 68 milliseconds