Home
last modified time | relevance | path

Searched refs:mutable_queue (Results 1 – 1 of 1) sorted by relevance

/external/libchrome/base/task/sequence_manager/
Dtask_queue_impl.cc740 std::priority_queue<Task>* mutable_queue = in QueueAsValueInto() local
743 while (!mutable_queue->empty()) { in QueueAsValueInto()
744 TaskAsValueInto(mutable_queue->top(), now, state); in QueueAsValueInto()
745 visited.push(std::move(const_cast<Task&>(mutable_queue->top()))); in QueueAsValueInto()
746 mutable_queue->pop(); in QueueAsValueInto()
748 *mutable_queue = std::move(visited); in QueueAsValueInto()