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

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLParserThread.cpp 67 s_sharedThread->postTask(WTF::bind(&HTMLParserThread::cleanupHTMLParserThread, s_sharedThread));
87 postTask(WTF::bind(&HTMLParserThread::setupHTMLParserThread, this));
97 void HTMLParserThread::postTask(const Closure& closure)
99 platformThread().postTask(new Task(closure));
HTMLParserThread.h 48 void postTask(const Closure&);
  /external/chromium_org/third_party/WebKit/Source/core/workers/
WorkerObjectProxy.cpp 52 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/
NullExecutionContext.cpp 33 void NullExecutionContext::postTask(PassOwnPtr<ExecutionContextTask>)
UnitTestHelpers.cpp 46 blink::Platform::current()->currentThread()->postTask(new QuitTask);
  /external/chromium_org/third_party/WebKit/Source/modules/quota/
DeprecatedStorageQuota.cpp 61 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));
DeprecatedStorageInfo.cpp 54 executionContext->postTask(StorageErrorCallback::CallbackTask::create(errorCallback, NotSupportedError));
66 executionContext->postTask(StorageErrorCallback::CallbackTask::create(errorCallback, NotSupportedError));
  /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 55 // 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;
WebWorkerRunLoop.h 43 BLINK_EXPORT bool postTask(Task*);
  /external/chromium_org/third_party/WebKit/Source/platform/
WebThreadSupportingGC.h 30 void postTask(WebThread::Task* task)
32 m_thread->postTask(task);
  /external/chromium_org/third_party/WebKit/Source/web/
WebWorkerRunLoop.cpp 62 bool WebWorkerRunLoop::postTask(Task* task)
64 m_workerThread->postTask(TaskForwarder::create(adoptPtr(task)));
  /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 76 context->postTask(DispatchCallbackTask::create(callback, data, instrumentationName));
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
DatabaseThread.cpp 70 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());
SQLTransactionClient.cpp 59 executionContext->postTask(createCrossThreadTask(&databaseModified, PassRefPtrWillBeRawPtr<Database>(database)));
  /external/chromium_org/content/child/
webthread_impl.h 42 virtual void postTask(Task* task);
63 virtual void postTask(Task* task) OVERRIDE;
  /external/chromium_org/mojo/services/html_viewer/
webthread_impl.h 41 virtual void postTask(Task* task);
62 virtual void postTask(Task* task);
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
ScriptStreamerThread.cpp 38 void ScriptStreamerThread::postTask(WebThread::Task* task)
44 platformThread().postTask(task);
ScriptStreamerThread.h 26 void postTask(WebThread::Task*);
  /external/chromium_org/third_party/WebKit/Source/platform/audio/
HRTFDatabaseLoader.cpp 102 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/
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 85 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/
MediaStreamTrackSourcesRequestImpl.cpp 65 m_executionContext->postTask(createCrossThreadTask(&MediaStreamTrackSourcesRequestImpl::performCallback, this));

Completed in 752 milliseconds

1 2 3 4