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

/external/chromium_org/third_party/WebKit/Source/core/workers/
H A DWorkerThread.cpp143 class WorkerThreadTask : public blink::WebThread::Task { class in namespace:blink
144 WTF_MAKE_NONCOPYABLE(WorkerThreadTask); WTF_MAKE_FAST_ALLOCATED;
146 static PassOwnPtr<WorkerThreadTask> create(const WorkerThread& workerThread, PassOwnPtr<ExecutionContextTask> task, bool isInstrumented)
148 return adoptPtr(new WorkerThreadTask(workerThread, task, isInstrumented));
151 virtual ~WorkerThreadTask() { }
170 WorkerThreadTask(const WorkerThread& workerThread, PassOwnPtr<ExecutionContextTask> task, bool isInstrumented) function in class:blink::WorkerThreadTask
436 m_thread->postTask(WorkerThreadTask::create(*this, task, true).leakPtr());
441 m_thread->postDelayedTask(WorkerThreadTask::create(*this, task, true).leakPtr(), delayMs);
446 m_debuggerMessageQueue.append(WorkerThreadTask::create(*this, task, false));

Completed in 52 milliseconds