HomeSort by relevance Sort by last modified time
    Searched defs:BlockingTaskRunner (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/cc/trees/
blocking_task_runner.h 22 // BlockingTaskRunner is in a capturing state will run in order, and tasks
23 // posted while the BlockingTaskRunner is /not/ in a capturing state will
28 // BlockingTaskRunner::current() on the thread you want the tasks to run.
29 // Hold a reference to the BlockingTaskRunner as long as you intend to
32 // Then, on the thread from which the BlockingTaskRunner was created, you
33 // may instantiate a BlockingTaskRunner::CapturePostTasks. While this object
43 class CC_EXPORT BlockingTaskRunner
44 : public base::RefCountedThreadSafe<BlockingTaskRunner> {
46 // Returns the BlockingTaskRunner for the current thread, creating one if
48 static scoped_refptr<BlockingTaskRunner> current()
    [all...]
blocking_task_runner.cc 21 std::vector<scoped_refptr<BlockingTaskRunner> > runners;
28 scoped_refptr<BlockingTaskRunner> BlockingTaskRunner::current() {
34 scoped_refptr<BlockingTaskRunner> current_task_runner;
48 scoped_refptr<BlockingTaskRunner> runner =
49 new BlockingTaskRunner(base::MessageLoopProxy::current());
54 BlockingTaskRunner::BlockingTaskRunner(
61 BlockingTaskRunner::~BlockingTaskRunner() {}
    [all...]

Completed in 50 milliseconds