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

  /external/chromium/chrome/browser/ui/views/tabs/
base_tab_strip.h 44 return tab_data_[tab_data_index].ideal_bounds;
81 return tab_data_[tab_index].tab;
92 int tab_count() const { return static_cast<int>(tab_data_.size()); }
100 // Returns the index into |tab_data_| corresponding to the index from the
101 // TabStripModel, or |tab_data_.size()| if there is no tab representing
159 // Invoked from |MoveTab| after |tab_data_| has been updated to animate the
199 tab_data_[index].ideal_bounds = bounds;
202 // Returns the index into |tab_data_| corresponding to the specified tab, or
203 // -1 if the tab isn't in |tab_data_|.
259 std::vector<TabData> tab_data_; member in class:BaseTabStrip
    [all...]
base_tab_strip.cc 133 tab_data_.insert(tab_data_.begin() + ModelIndexToTabIndex(model_index), d);
147 BaseTab* tab = tab_data_[from_tab_data_index].tab;
148 tab_data_.erase(tab_data_.begin() + from_tab_data_index);
152 tab_data_.insert(tab_data_.begin() + to_tab_data_index, data);
205 return static_cast<int>(tab_data_.size());
444 tab_data_.erase(tab_data_.begin() + tab_data_index)
    [all...]
  /external/chromium/chrome/browser/ui/gtk/tabs/
tab_strip_gtk.cc 715 std::vector<TabData>::iterator iterator = tab_data_.begin();
716 for (; iterator < tab_data_.end(); iterator++) {
720 tab_data_.clear();
803 const gfx::Rect& bounds = tab_data_.at(i).ideal_bounds;
867 // Make sure we leave the tab_data_ vector in a consistent state, otherwise
870 std::vector<TabData>::iterator it = tab_data_.begin();
871 for (; it != tab_data_.end(); ++it) {
875 tab_data_.erase(it);
893 return tab_data_.at(index).ideal_bounds;
    [all...]
tab_strip_gtk.h 402 std::vector<TabData> tab_data_; member in class:TabStripGtk

Completed in 274 milliseconds