HomeSort by relevance Sort by last modified time
    Searched refs:postDelayedTask (Results 1 - 12 of 12) sorted by null

  /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
55 virtual void postDelayedTask(Task*, long long delayMs) = 0;
  /external/chromium_org/content/child/
webthread_impl.h 42 virtual void postDelayedTask(Task* task, long long delay_ms);
62 virtual void postDelayedTask(Task* task, long long delay_ms) OVERRIDE;
webthread_impl.cc 68 void WebThreadImpl::postDelayedTask(Task* task, long long delay_ms) {
69 thread_->message_loop()->PostDelayedTask(
104 void WebThreadImplForMessageLoop::postDelayedTask(Task* task,
106 message_loop_->PostDelayedTask(
  /external/chromium_org/mojo/examples/html_viewer/
webthread_impl.h 42 virtual void postDelayedTask(Task* task, long long delay_ms);
62 virtual void postDelayedTask(Task* task, long long delay_ms);
webthread_impl.cc 69 void WebThreadImpl::postDelayedTask(Task* task, long long delay_ms) {
70 thread_->message_loop()->PostDelayedTask(
105 void WebThreadImplForMessageLoop::postDelayedTask(Task* task,
107 message_loop_->PostDelayedTask(
  /external/chromium_org/content/shell/renderer/test_runner/
MockColorChooser.cpp 50 m_delegate->postDelayedTask(new HostMethodTask(this, &MockColorChooser::invokeDidEndChooser), 0);
WebTestDelegate.h 67 virtual void postDelayedTask(WebTask*, long long ms) = 0;
SpellCheckClient.cpp 103 m_delegate->postDelayedTask(new HostMethodTask(this, &SpellCheckClient::finishLastTextCheck), 0);
test_runner.cc     [all...]
web_test_proxy.cc 551 delegate_->postDelayedTask(
    [all...]
  /external/chromium_org/content/shell/renderer/
webkit_test_runner.h 70 virtual void postDelayedTask(WebTask* task, long long ms) OVERRIDE;
webkit_test_runner.cc 240 void WebKitTestRunner::postDelayedTask(WebTask* task, long long ms) {
241 base::MessageLoop::current()->PostDelayedTask(

Completed in 376 milliseconds