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

  /external/chromium/chrome/browser/tabs/
tab_strip_model.h 27 // TabStripModel
49 // A TabStripModel has one delegate that it relies on to perform certain tasks
53 // A TabStripModel also has N observers (see TabStripModelObserver above),
61 class TabStripModel : public NotificationObserver {
115 // Construct a TabStripModel with a delegate to help it do certain things
117 TabStripModel(TabStripModelDelegate* delegate, Profile* profile);
118 virtual ~TabStripModel();
120 // Retrieves the TabStripModelDelegate associated with this TabStripModel.
123 // Add and remove observers to changes within this TabStripModel.
127 // Retrieve the number of TabContentses/emptiness of the TabStripModel
    [all...]
tab_strip_model.cc 60 // TabStripModel, public:
62 TabStripModel::TabStripModel(TabStripModelDelegate* delegate, Profile* profile)
77 TabStripModel::~TabStripModel() {
84 void TabStripModel::AddObserver(TabStripModelObserver* observer) {
88 void TabStripModel::RemoveObserver(TabStripModelObserver* observer) {
92 void TabStripModel::SetInsertionPolicy(InsertionPolicy policy) {
96 TabStripModel::InsertionPolicy TabStripModel::insertion_policy() const
    [all...]
  /external/chromium_org/chrome/browser/ui/tabs/
tab_strip_model.h 26 // TabStripModel
48 // A TabStripModel has one delegate that it relies on to perform certain tasks
52 // A TabStripModel also has N observers (see TabStripModelObserver above),
60 class TabStripModel {
124 // Construct a TabStripModel with a delegate to help it do certain things
126 TabStripModel(TabStripModelDelegate* delegate, Profile* profile);
127 virtual ~TabStripModel();
129 // Retrieves the TabStripModelDelegate associated with this TabStripModel.
132 // Add and remove observers to changes within this TabStripModel.
136 // Retrieve the number of WebContentses/emptiness of the TabStripModel
    [all...]
tab_strip_model.cc 136 class TabStripModel::WebContentsData : public content::WebContentsObserver {
138 WebContentsData(TabStripModel* tab_strip_model, WebContents* a_contents);
172 // The TabStripModel containing this WebContents.
173 TabStripModel* tab_strip_model_;
210 TabStripModel::WebContentsData::WebContentsData(TabStripModel* tab_strip_model,
223 void TabStripModel::WebContentsData::SetWebContents(WebContents* contents) {
228 void TabStripModel::WebContentsData::WebContentsDestroyed(
235 DCHECK_NE(TabStripModel::kNoTab, index);
240 // TabStripModel, public
    [all...]

Completed in 48 milliseconds