| Index: chrome/browser/ui/views/tabs/browser_tab_strip_controller.h
|
| diff --git a/chrome/browser/ui/views/tabs/browser_tab_strip_controller.h b/chrome/browser/ui/views/tabs/browser_tab_strip_controller.h
|
| index b1baac40247d1d8a20ba8c50d5c13f476078c5bb..b3b71c0b12d3539ee6b4b337a24d6f5616ce92f2 100644
|
| --- a/chrome/browser/ui/views/tabs/browser_tab_strip_controller.h
|
| +++ b/chrome/browser/ui/views/tabs/browser_tab_strip_controller.h
|
| @@ -97,17 +97,27 @@ class BrowserTabStripController : public TabStripController,
|
| const NotificationSource& source,
|
| const NotificationDetails& details) OVERRIDE;
|
|
|
| + protected:
|
| + // Sets the TabRendererData from the TabStripModel.
|
| + virtual void SetTabRendererDataFromModel(TabContents* contents,
|
| + int model_index,
|
| + TabRendererData* data);
|
| +
|
| + Profile* profile() const { return model_->profile(); }
|
| +
|
| + TabStripModel* model_;
|
| +
|
| + BaseTabStrip* tabstrip_;
|
| +
|
| + // Non-owning pointer to the browser which is using this controller.
|
| + Browser* browser_;
|
| +
|
| private:
|
| class TabContextMenuContents;
|
|
|
| // Invokes tabstrip_->SetTabData.
|
| void SetTabDataAt(TabContentsWrapper* contents, int model_index);
|
|
|
| - // Sets the TabRendererData from the TabStripModel.
|
| - void SetTabRendererDataFromModel(TabContents* contents,
|
| - int model_index,
|
| - TabRendererData* data);
|
| -
|
| void StartHighlightTabsForCommand(
|
| TabStripModel::ContextMenuCommand command_id,
|
| BaseTab* tab);
|
| @@ -115,15 +125,6 @@ class BrowserTabStripController : public TabStripController,
|
| TabStripModel::ContextMenuCommand command_id,
|
| BaseTab* tab);
|
|
|
| - Profile* profile() const { return model_->profile(); }
|
| -
|
| - TabStripModel* model_;
|
| -
|
| - BaseTabStrip* tabstrip_;
|
| -
|
| - // Non-owning pointer to the browser which is using this controller.
|
| - Browser* browser_;
|
| -
|
| // If non-NULL it means we're showing a menu for the tab.
|
| scoped_ptr<TabContextMenuContents> context_menu_contents_;
|
|
|
|
|