Home | History | Annotate | Download | only in message_loop

Lines Matching refs:IncomingTaskQueue

26 class BASE_EXPORT IncomingTaskQueue
27 : public RefCountedThreadSafe<IncomingTaskQueue> {
41 // Notifies this Observer that a task was queued in the IncomingTaskQueue it
83 // Constructs an IncomingTaskQueue which will invoke |task_queue_observer|
85 // IncomingTaskQueue's lifetime. Ownership is required as opposed to a raw
86 // pointer since IncomingTaskQueue is ref-counted. For the same reasons,
89 explicit IncomingTaskQueue(std::unique_ptr<Observer> task_queue_observer);
103 // Instructs this IncomingTaskQueue to stop accepting tasks, this cannot be
104 // undone. Note that the registered IncomingTaskQueue::Observer may still
126 friend class RefCountedThreadSafe<IncomingTaskQueue>;
151 TriageQueue(IncomingTaskQueue* outer);
167 IncomingTaskQueue* const outer_;
222 virtual ~IncomingTaskQueue();
269 // |triage_tasks_|, if the IncomingTaskQueue has been made non-empty by a
273 DISALLOW_COPY_AND_ASSIGN(IncomingTaskQueue);