OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:BlockingTaskRunner
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/cc/trees/
blocking_task_runner.h
21
//
BlockingTaskRunner
is in a capturing state will run in order, and tasks
22
// posted while the
BlockingTaskRunner
is /not/ in a capturing state will
27
//
BlockingTaskRunner
::current() on the thread you want the tasks to run.
28
// Hold a reference to the
BlockingTaskRunner
as long as you intend to
31
// Then, on the thread from which the
BlockingTaskRunner
was created, you
32
// may instantiate a
BlockingTaskRunner
::CapturePostTasks. While this object
42
class CC_EXPORT
BlockingTaskRunner
43
: public base::RefCountedThreadSafe<
BlockingTaskRunner
> {
45
// Returns the
BlockingTaskRunner
for the current thread, creating one if
47
static scoped_refptr<
BlockingTaskRunner
> current()
[
all
...]
blocking_task_runner.cc
16
scoped_refptr<
BlockingTaskRunner
> > TaskRunnerPair;
31
scoped_refptr<
BlockingTaskRunner
>
BlockingTaskRunner
::current() {
41
// by the
BlockingTaskRunner
and the MessageLoop is gone, so drop the
42
//
BlockingTaskRunner
from the TaskRunnerPairs array along with the
56
scoped_refptr<
BlockingTaskRunner
> runner = new
BlockingTaskRunner
(current);
61
BlockingTaskRunner
::
BlockingTaskRunner
(
65
BlockingTaskRunner
::~BlockingTaskRunner() {
[
all
...]
Completed in 31 milliseconds