HomeSort by relevance Sort by last modified time
    Searched refs:sent_requests_ (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/content/browser/
plugin_process_host.cc 326 return sent_requests_.empty();
338 while (!sent_requests_.empty()) {
339 Client* client = sent_requests_.front();
342 sent_requests_.pop_front();
377 std::list<Client*>::iterator it = sent_requests_.begin();
378 while (it != sent_requests_.end()) {
385 DCHECK(it != sent_requests_.end());
400 sent_requests_.push_back(client);
409 Client* client = sent_requests_.front();
421 sent_requests_.pop_front()
    [all...]
ppapi_plugin_process_host.cc 389 sent_requests_.push(client);
450 while (!sent_requests_.empty()) {
451 sent_requests_.front()->OnPpapiChannelOpened(IPC::ChannelHandle(),
453 sent_requests_.pop();
460 if (sent_requests_.empty())
464 // sent_requests_ queue should be the one that the plugin just created.
465 Client* client = sent_requests_.front();
466 sent_requests_.pop();
plugin_process_host.h 166 std::list<Client*> sent_requests_; member in class:content::PluginProcessHost
ppapi_plugin_process_host.h 156 std::queue<Client*> sent_requests_; member in class:content::PpapiPluginProcessHost

Completed in 3222 milliseconds