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

/external/chromium_org/third_party/WebKit/Source/core/testing/
H A DNullExecutionContext.cpp33 void NullExecutionContext::postTask(PassOwnPtr<ExecutionContextTask>) function in class:blink::NullExecutionContext
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DScriptStreamerThread.cpp38 void ScriptStreamerThread::postTask(WebThread::Task* task) function in class:blink::ScriptStreamerThread
44 platformThread().postTask(task);
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLParserThread.cpp67 s_sharedThread->postTask(WTF::bind(&HTMLParserThread::cleanupHTMLParserThread, s_sharedThread));
87 postTask(WTF::bind(&HTMLParserThread::setupHTMLParserThread, this));
97 void HTMLParserThread::postTask(const Closure& closure) function in class:blink::HTMLParserThread
99 platformThread().postTask(new Task(closure));
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebWorkerRunLoop.cpp62 bool WebWorkerRunLoop::postTask(Task* task) function in class:blink::WebWorkerRunLoop
64 m_workerThread->postTask(TaskForwarder::create(adoptPtr(task)));
/external/chromium_org/third_party/WebKit/Source/platform/
H A DWebThreadSupportingGC.h30 void postTask(WebThread::Task* task) function in class:blink::FINAL
32 m_thread->postTask(task);
/external/chromium_org/content/child/
H A Dwebthread_impl.cc63 void WebThreadImpl::postTask(Task* task) { function in class:content::WebThreadImpl
104 void WebThreadImplForMessageLoop::postTask(Task* task) { function in class:content::WebThreadImplForMessageLoop
/external/chromium_org/mojo/services/html_viewer/
H A Dwebthread_impl.cc63 void WebThreadImpl::postTask(Task* task) { function in class:mojo::WebThreadImpl
103 void WebThreadImplForMessageLoop::postTask(Task* task) { function in class:mojo::WebThreadImplForMessageLoop
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DMainThreadTaskRunner.cpp80 void MainThreadTaskRunner::postTask(PassOwnPtr<ExecutionContextTask> task) function in class:blink::MainThreadTaskRunner
H A DDocument.cpp5027 m_taskRunner->postTask(AddConsoleMessageTask::create(consoleMessage->source(), consoleMessage->level(), consoleMessage->message()));
5046 void Document::postTask(PassOwnPtr<ExecutionContextTask> task) function in class:blink::Document
5048 m_taskRunner->postTask(task);
5611 m_taskRunner->postTask(AutofocusTask::create());
/external/chromium_org/third_party/WebKit/Source/core/workers/
H A DWorkerGlobalScope.cpp168 postTask(CloseWorkerGlobalScopeTask::create());
185 void WorkerGlobalScope::postTask(PassOwnPtr<ExecutionContextTask> task) function in class:blink::WorkerGlobalScope
187 thread()->postTask(task);
279 postTask(AddConsoleMessageTask::create(consoleMessage->source(), consoleMessage->level(), consoleMessage->message()));
H A DWorkerThread.cpp229 m_thread->postTask(new Task(WTF::bind(&WorkerThread::initialize, this)));
333 workerGlobalScope->thread()->m_thread->postTask(new Task(WTF::bind(&WorkerThread::cleanup, workerGlobalScope->thread())));
359 workerGlobalScope->postTask(WorkerThreadShutdownFinishTask::create());
398 postTask(WorkerThreadShutdownStartTask::create());
434 void WorkerThread::postTask(PassOwnPtr<ExecutionContextTask> task) function in class:blink::WorkerThread
436 m_thread->postTask(WorkerThreadTask::create(*this, task, true).leakPtr());
447 postTask(RunDebuggerQueueTask::create(this));
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DRecordingImageBufferSurfaceTest.cpp237 virtual void postTask(Task* task) function in class:__anon11317::AutoInstallCurrentThreadPlatformMock::CurrentThreadMock
310 Platform::current()->currentThread()->postTask(new TestWrapperTask_ ## TEST_METHOD(this)); \
/external/chromium_org/third_party/WebKit/Source/platform/scheduler/
H A DScheduler.cpp147 m_mainThread->postTask(new MainThreadIdleTaskAdapter(idleTask, 0, location));
160 void Scheduler::postTask(const TraceLocation& location, const Task& task) function in class:blink::Scheduler
162 m_mainThread->postTask(new MainThreadPendingTaskRunner(task, location, "Scheduler::MainThreadTask"));
184 m_mainThread->postTask(new MainThreadPendingTaskRunner(task, location, "Scheduler::IpcTask"));
192 m_mainThread->postTask(new MainThreadPendingHighPriorityTaskRunner());

Completed in 285 milliseconds