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

  /external/webkit/WebCore/workers/
SharedWorkerThread.cpp 35 #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)
52 SharedWorkerThread::~SharedWorkerThread()
56 PassRefPtr<WorkerContext> SharedWorkerThread::createWorkerContext(const KURL& url, const String& userAgent)
SharedWorkerThread.h 39 class SharedWorkerThread : public WorkerThread {
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&);
SharedWorkerContext.h 41 class SharedWorkerThread;
46 static PassRefPtr<SharedWorkerContext> create(const String& name, const KURL& url, const String& userAgent, SharedWorkerThread* thread)
61 SharedWorkerThread* thread();
63 SharedWorkerContext(const String& name, const KURL&, const String&, SharedWorkerThread*);
SharedWorkerContext.cpp 41 #include "SharedWorkerThread.h"
52 SharedWorkerContext::SharedWorkerContext(const String& name, const KURL& url, const String& userAgent, SharedWorkerThread* thread)
62 SharedWorkerThread* SharedWorkerContext::thread()
64 return static_cast<SharedWorkerThread*>(Base::thread());
DefaultSharedWorkerRepository.cpp 49 #include "SharedWorkerThread.h"
63 void setThread(PassRefPtr<SharedWorkerThread> thread) { m_thread = thread; }
64 SharedWorkerThread* thread() { return m_thread.get(); }
101 RefPtr<SharedWorkerThread> m_thread;
313 RefPtr<SharedWorkerThread> thread = SharedWorkerThread::create(proxy.name(), proxy.url(), userAgent, workerScript, proxy, proxy);
  /external/webkit/WebKit/chromium/src/
WebSharedWorkerImpl.cpp 41 #include "SharedWorkerThread.h"
98 setWorkerThread(SharedWorkerThread::create(name, url, userAgent, sourceCode, *this, *this));
  /external/webkit/WebCore/
Android.mk 929 workers/SharedWorkerThread.cpp \

Completed in 33 milliseconds