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

  /external/chromium_org/chrome/browser/ui/tab_contents/
tab_contents_iterator.cc 24 while (!browser_iterator_.done()) {
25 if (++web_view_index_ >= browser_iterator_->tab_strip_model()->count()) {
27 browser_iterator_.Next();
32 content::WebContents* next_tab = browser_iterator_->tab_strip_model()
tab_contents_iterator.h 39 if (!browser_iterator_.done())
40 return *browser_iterator_;
53 // call from the constructor, when browser_iterator_ points to the first
67 chrome::BrowserIterator browser_iterator_; member in class:TabContentsIterator
  /external/chromium/chrome/browser/ui/
browser_list.h 218 return *browser_iterator_;
242 // call when browser_iterator_ points to the first browser and
247 BrowserList::const_iterator browser_iterator_; member in class:TabContentsIterator
browser_list.cc 609 : browser_iterator_(BrowserList::begin()),
618 DCHECK(web_view_index_ || browser_iterator_ == BrowserList::end() || cur_)
622 while (browser_iterator_ != BrowserList::end()) {
625 while (web_view_index_ >= (*browser_iterator_)->tab_count()) {
627 ++browser_iterator_;
629 if (browser_iterator_ == BrowserList::end()) {
636 (*browser_iterator_)->GetTabContentsWrapperAt(web_view_index_);

Completed in 237 milliseconds