Searched refs:postTask (Results 1 - 25 of 77) sorted by relevance

1234

/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));
H A DHTMLParserThread.h48 void postTask(const Closure&);
/external/chromium_org/third_party/WebKit/Source/core/workers/
H A DWorkerObjectProxy.cpp52 m_executionContext->postTask(createCrossThreadTask(&WorkerMessagingProxy::postMessageToWorkerObject, m_messagingProxy, message, channels));
57 m_executionContext->postTask(task);
62 m_executionContext->postTask(createCrossThreadTask(&WorkerMessagingProxy::confirmMessageFromWorkerObject, m_messagingProxy, hasPendingActivity));
67 m_executionContext->postTask(createCrossThreadTask(&WorkerMessagingProxy::reportPendingActivity, m_messagingProxy, hasPendingActivity));
72 m_executionContext->postTask(createCrossThreadTask(&WorkerMessagingProxy::reportException, m_messagingProxy, errorMessage, lineNumber, columnNumber, sourceURL));
77 m_executionContext->postTask(createCrossThreadTask(&WorkerMessagingProxy::reportConsoleMessage, m_messagingProxy, consoleMessage->source(), consoleMessage->level(), consoleMessage->message(), consoleMessage->lineNumber(), consoleMessage->url()));
93 m_executionContext->postTask(createCrossThreadTask(&WorkerMessagingProxy::terminateWorkerGlobalScope, m_messagingProxy));
99 m_executionContext->postTask(createCrossThreadTask(&WorkerMessagingProxy::workerThreadTerminated, m_messagingProxy));
/external/chromium_org/third_party/WebKit/Source/core/testing/
H A DNullExecutionContext.cpp33 void NullExecutionContext::postTask(PassOwnPtr<ExecutionContextTask>) function in class:blink::NullExecutionContext
H A DUnitTestHelpers.cpp46 blink::Platform::current()->currentThread()->postTask(new QuitTask);
/external/chromium_org/third_party/WebKit/Source/modules/quota/
H A DDeprecatedStorageQuota.cpp61 executionContext->postTask(StorageErrorCallback::CallbackTask::create(errorCallback, NotSupportedError));
67 executionContext->postTask(StorageErrorCallback::CallbackTask::create(errorCallback, NotSupportedError));
83 executionContext->postTask(StorageErrorCallback::CallbackTask::create(errorCallback, NotSupportedError));
89 executionContext->postTask(StorageErrorCallback::CallbackTask::create(errorCallback, NotSupportedError));
H A DDeprecatedStorageInfo.cpp54 executionContext->postTask(StorageErrorCallback::CallbackTask::create(errorCallback, NotSupportedError));
66 executionContext->postTask(StorageErrorCallback::CallbackTask::create(errorCallback, NotSupportedError));
/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/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/core/dom/
H A DMainThreadTaskRunnerTest.cpp71 runner->postTask(MarkingBooleanTask::create(&isMarked));
84 runner->postTask(MarkingBooleanTask::create(&isMarked));
102 runner->postTask(MarkingBooleanTask::create(&isMarked));
H A DMainThreadTaskRunner.h53 void postTask(PassOwnPtr<ExecutionContextTask>); // Executes the task on context's thread asynchronously.
H A DStringCallback.cpp76 context->postTask(DispatchCallbackTask::create(callback, data, instrumentationName));
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
H A DDatabaseThread.cpp70 m_thread->postTask(new Task(WTF::bind(&DatabaseThread::setupDatabaseThread, this)));
87 m_thread->postTask(new Task(WTF::bind(&DatabaseThread::cleanupDatabaseThread, this)));
120 m_thread->postTask(new Task(WTF::bind(&DatabaseThread::cleanupDatabaseThreadCompleted, this)));
159 m_thread->postTask(task.leakPtr());
H A DSQLTransactionClient.cpp59 executionContext->postTask(createCrossThreadTask(&databaseModified, PassRefPtrWillBeRawPtr<Database>(database)));
/external/chromium_org/third_party/WebKit/Source/platform/heap/glue/
H A DMessageLoopInterruptor.h48 m_thread->postTask(new GCTask);
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebThread.h55 // postTask() and postDelayedTask() take ownership of the passed Task
56 // object. It is safe to invoke postTask() and postDelayedTask() from any
58 virtual void postTask(Task*) = 0;
H A DWebWorkerRunLoop.h43 BLINK_EXPORT bool postTask(Task*);
/external/chromium_org/mojo/services/html_viewer/
H A Dwebthread_impl.h41 virtual void postTask(Task* task);
62 virtual void postTask(Task* task);
/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);
H A DScriptStreamerThread.h26 void postTask(WebThread::Task*);
/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DHRTFDatabaseLoader.cpp102 m_thread->postTask(new Task(WTF::bind(&HRTFDatabaseLoader::loadTask, this)));
125 m_thread->postTask(new Task(WTF::bind(&HRTFDatabaseLoader::cleanupTask, this, &sync)));
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DFrameTestHelpers.cpp80 Platform::current()->currentThread()->postTask(this);
100 Platform::current()->currentThread()->postTask(new ServeAsyncRequestsTask(m_client));
111 Platform::current()->currentThread()->postTask(new ServeAsyncRequestsTask(testClientForFrame(frame)));
213 Platform::current()->currentThread()->postTask(new LoadTask(frame, urlRequest));
219 Platform::current()->currentThread()->postTask(new LoadHTMLStringTask(frame, html, baseURL));
225 Platform::current()->currentThread()->postTask(new LoadHistoryItemTask(frame, item, loadType, cachePolicy));
231 Platform::current()->currentThread()->postTask(new ReloadTask(frame, false));
237 Platform::current()->currentThread()->postTask(new ReloadTask(frame, true));
H A DSpinLockTest.cpp85 thread1->postTask(new Task(WTF::bind(&threadMain, static_cast<char*>(sharedBuffer))));
86 thread2->postTask(new Task(WTF::bind(&threadMain, static_cast<char*>(sharedBuffer))));
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
H A DMediaStreamTrackSourcesRequestImpl.cpp65 m_executionContext->postTask(createCrossThreadTask(&MediaStreamTrackSourcesRequestImpl::performCallback, this));
/external/chromium_org/content/child/
H A Dwebthread_impl.h42 virtual void postTask(Task* task);
63 virtual void postTask(Task* task) OVERRIDE;

Completed in 2368 milliseconds

1234