HomeSort by relevance Sort by last modified time
    Searched refs:postTask (Results 1 - 25 of 75) sorted by null

1 2 3

  /external/chromium_org/third_party/WebKit/Source/core/workers/
WorkerObjectProxy.cpp 49 m_executionContext->postTask(bind(&WorkerMessagingProxy::postMessageToWorkerObject, m_messagingProxy, message, channels));
54 m_executionContext->postTask(task);
59 m_executionContext->postTask(bind(&WorkerMessagingProxy::confirmMessageFromWorkerObject, m_messagingProxy, hasPendingActivity));
64 m_executionContext->postTask(bind(&WorkerMessagingProxy::reportPendingActivity, m_messagingProxy, hasPendingActivity));
69 m_executionContext->postTask(bind(&WorkerMessagingProxy::reportException, m_messagingProxy, errorMessage.isolatedCopy(), lineNumber, columnNumber, sourceURL.isolatedCopy()));
74 m_executionContext->postTask(bind(&WorkerMessagingProxy::reportConsoleMessage, m_messagingProxy, source, level, message.isolatedCopy(), lineNumber, sourceURL.isolatedCopy()));
79 m_executionContext->postTask(bind(&WorkerMessagingProxy::postMessageToPageInspector, m_messagingProxy, message.isolatedCopy()));
89 m_executionContext->postTask(bind(&WorkerMessagingProxy::terminateWorkerGlobalScope, m_messagingProxy));
95 m_executionContext->postTask(bind(&WorkerMessagingProxy::workerGlobalScopeDestroyed, m_messagingProxy));
WorkerRunLoop.h 68 bool postTask(PassOwnPtr<ExecutionContextTask>);
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLParserThread.cpp 72 s_sharedThread->postTask(WTF::bind(&HTMLParserThread::cleanupHTMLParserThread, s_sharedThread, &taskSynchronizer));
98 postTask(WTF::bind(&HTMLParserThread::setupHTMLParserThread, this));
108 void HTMLParserThread::postTask(const Closure& closure)
110 platformThread().postTask(new Task(closure));
HTMLParserThread.h 52 void postTask(const Closure&);
  /external/chromium_org/third_party/WebKit/Source/core/testing/
UnitTestHelpers.cpp 46 blink::Platform::current()->currentThread()->postTask(new QuitTask);
  /external/chromium_org/third_party/WebKit/Source/platform/heap/glue/
MessageLoopInterruptor.h 48 m_thread->postTask(new GCTask);
  /external/chromium_org/third_party/WebKit/public/platform/
WebThread.h 51 // postTask() and postDelayedTask() take ownership of the passed Task
52 // object. It is safe to invoke postTask() and postDelayedTask() from any
54 virtual void postTask(Task*) = 0;
WebWorkerRunLoop.h 45 BLINK_EXPORT bool postTask(Task*);
  /external/chromium_org/content/child/
webthread_impl.h 41 virtual void postTask(Task* task);
61 virtual void postTask(Task* task) OVERRIDE;
  /external/chromium_org/mojo/examples/html_viewer/
webthread_impl.h 41 virtual void postTask(Task* task);
61 virtual void postTask(Task* task);
  /external/chromium_org/third_party/WebKit/Source/web/
WebWorkerRunLoop.cpp 64 bool WebWorkerRunLoop::postTask(Task* task)
66 return m_workerRunLoop->postTask(TaskForwarder::create(adoptPtr(task)));
  /external/chromium_org/third_party/WebKit/Source/modules/quota/
DeprecatedStorageQuota.cpp 62 executionContext->postTask(StorageErrorCallback::CallbackTask::create(errorCallback, NotSupportedError));
68 executionContext->postTask(StorageErrorCallback::CallbackTask::create(errorCallback, NotSupportedError));
84 executionContext->postTask(StorageErrorCallback::CallbackTask::create(errorCallback, NotSupportedError));
90 executionContext->postTask(StorageErrorCallback::CallbackTask::create(errorCallback, NotSupportedError));
DeprecatedStorageInfo.cpp 60 executionContext->postTask(StorageErrorCallback::CallbackTask::create(errorCallback, NotSupportedError));
72 executionContext->postTask(StorageErrorCallback::CallbackTask::create(errorCallback, NotSupportedError));
  /external/chromium_org/content/shell/renderer/test_runner/
mock_webrtc_peer_connection_handler.cc 163 interfaces_->delegate()->postTask(new RTCPeerConnectionStateTask(
182 interfaces_->delegate()->postTask(
186 interfaces_->delegate()->postTask(
196 interfaces_->delegate()->postTask(
200 interfaces_->delegate()->postTask(
209 interfaces_->delegate()->postTask(
212 interfaces_->delegate()->postTask(
221 interfaces_->delegate()->postTask(
224 interfaces_->delegate()->postTask(
251 interfaces_->delegate()->postTask(
    [all...]
MockWebMIDIAccessor.cpp 55 m_interfaces->delegate()->postTask(new DidStartSessionTask(this, m_client, m_interfaces->testRunner()->midiAccessorResult()));
mock_webrtc_dtmf_sender_handler.cc 64 delegate_->postTask(new DTMFSenderToneTask(this, client_));
65 delegate_->postTask(new DTMFSenderToneTask(this, client_));
mock_web_user_media_client.cc 120 delegate_->postTask(
129 delegate_->postTask(new UserMediaRequestConstraintFailedTask(
136 delegate_->postTask(new UserMediaRequestConstraintFailedTask(
167 delegate_->postTask(new UserMediaRequestTask(this, request, stream));
192 delegate_->postTask(new MediaDevicesRequestTask(this, request, devices));
mock_webrtc_data_channel_handler.cc 49 delegate_->postTask(new DataChannelReadyStateTask(
103 delegate_->postTask(new DataChannelReadyStateTask(
  /external/chromium_org/third_party/WebKit/Source/core/dom/
MainThreadTaskRunnerTest.cpp 65 TEST(MainThreadTaskRunnerTest, PostTask)
71 runner->postTask(MarkingBooleanTask::create(&isMarked));
84 runner->postTask(MarkingBooleanTask::create(&isMarked));
102 runner->postTask(MarkingBooleanTask::create(&isMarked));
MainThreadTaskRunner.h 53 void postTask(PassOwnPtr<ExecutionContextTask>); // Executes the task on context's thread asynchronously.
StringCallback.cpp 69 context->postTask(DispatchCallbackTask::create(callback, data));
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
DatabaseThread.cpp 74 m_thread->postTask(new Task(WTF::bind(&DatabaseThread::setupDatabaseThread, this)));
93 m_thread->postTask(new Task(WTF::bind(&DatabaseThread::cleanupDatabaseThread, this)));
125 m_thread->postTask(new Task(WTF::bind(&DatabaseThread::cleanupDatabaseThreadCompleted, this)));
169 m_thread->postTask(task.leakPtr());
SQLTransactionClient.cpp 58 executionContext->postTask(bind(&databaseModified, PassRefPtrWillBeRawPtr<DatabaseBackendBase>(database)));
  /external/chromium_org/third_party/WebKit/Source/web/tests/
FrameTestHelpers.cpp 80 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));
SpinLockTest.cpp 86 thread1->postTask(new Task(WTF::bind(&threadMain, static_cast<char*>(sharedBuffer))));
87 thread2->postTask(new Task(WTF::bind(&threadMain, static_cast<char*>(sharedBuffer))));

Completed in 1475 milliseconds

1 2 3