Home | History | Annotate | Download | only in extensions

Lines Matching refs:queue_

72     queue_.push_back(host);
78 Queue::iterator it = std::find(queue_.begin(), queue_.end(), host);
79 if (it != queue_.end())
80 queue_.erase(it);
103 if (queue_.empty())
106 queue_.front()->CreateRenderViewNow();
107 queue_.pop_front();
109 if (!queue_.empty())
114 Queue queue_;