| Index: chrome/browser/ui/tabs/test_tab_strip_model_delegate.h
|
| diff --git a/chrome/browser/ui/tabs/test_tab_strip_model_delegate.h b/chrome/browser/ui/tabs/test_tab_strip_model_delegate.h
|
| index 31e6d241cbebdb669ef089b775108e388e4f6001..e0926ed1409c8f6f06698cf62526a2feaf83c40c 100644
|
| --- a/chrome/browser/ui/tabs/test_tab_strip_model_delegate.h
|
| +++ b/chrome/browser/ui/tabs/test_tab_strip_model_delegate.h
|
| @@ -17,15 +17,15 @@ class TestTabStripModelDelegate : public TabStripModelDelegate {
|
| virtual ~TestTabStripModelDelegate();
|
|
|
| // Overridden from TabStripModelDelegate:
|
| - virtual TabContentsWrapper* AddBlankTab(bool foreground) OVERRIDE;
|
| - virtual TabContentsWrapper* AddBlankTabAt(int index,
|
| - bool foreground) OVERRIDE;
|
| - virtual Browser* CreateNewStripWithContents(TabContentsWrapper* contents,
|
| + virtual TabContents* AddBlankTab(bool foreground) OVERRIDE;
|
| + virtual TabContents* AddBlankTabAt(int index,
|
| + bool foreground) OVERRIDE;
|
| + virtual Browser* CreateNewStripWithContents(TabContents* contents,
|
| const gfx::Rect& window_bounds,
|
| const DockInfo& dock_info,
|
| bool maximize) OVERRIDE;
|
| virtual int GetDragActions() const OVERRIDE;
|
| - virtual TabContentsWrapper* CreateTabContentsForURL(
|
| + virtual TabContents* CreateTabContentsForURL(
|
| const GURL& url,
|
| const content::Referrer& referrer,
|
| Profile* profile,
|
| @@ -35,9 +35,8 @@ class TestTabStripModelDelegate : public TabStripModelDelegate {
|
| virtual bool CanDuplicateContentsAt(int index) OVERRIDE;
|
| virtual void DuplicateContentsAt(int index) OVERRIDE;
|
| virtual void CloseFrameAfterDragSession() OVERRIDE;
|
| - virtual void CreateHistoricalTab(TabContentsWrapper* contents) OVERRIDE;
|
| - virtual bool RunUnloadListenerBeforeClosing(
|
| - TabContentsWrapper* contents) OVERRIDE;
|
| + virtual void CreateHistoricalTab(TabContents* contents) OVERRIDE;
|
| + virtual bool RunUnloadListenerBeforeClosing(TabContents* contents) OVERRIDE;
|
| virtual bool CanRestoreTab() OVERRIDE;
|
| virtual void RestoreTab() OVERRIDE;
|
| virtual bool CanCloseContents(std::vector<int>* indices) OVERRIDE;
|
|
|