OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_UI_TABS_TEST_TAB_STRIP_MODEL_DELEGATE_H_ | 5 #ifndef CHROME_BROWSER_UI_TABS_TEST_TAB_STRIP_MODEL_DELEGATE_H_ |
6 #define CHROME_BROWSER_UI_TABS_TEST_TAB_STRIP_MODEL_DELEGATE_H_ | 6 #define CHROME_BROWSER_UI_TABS_TEST_TAB_STRIP_MODEL_DELEGATE_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "chrome/browser/ui/tabs/tab_strip_model_delegate.h" | 10 #include "chrome/browser/ui/tabs/tab_strip_model_delegate.h" |
(...skipping 10 matching lines...) Expand all Loading... |
21 const std::vector<NewStripContents>& contentses, | 21 const std::vector<NewStripContents>& contentses, |
22 const gfx::Rect& window_bounds, | 22 const gfx::Rect& window_bounds, |
23 const DockInfo& dock_info, | 23 const DockInfo& dock_info, |
24 bool maximize) OVERRIDE; | 24 bool maximize) OVERRIDE; |
25 virtual void WillAddWebContents(content::WebContents* contents) OVERRIDE; | 25 virtual void WillAddWebContents(content::WebContents* contents) OVERRIDE; |
26 virtual int GetDragActions() const OVERRIDE; | 26 virtual int GetDragActions() const OVERRIDE; |
27 virtual bool CanDuplicateContentsAt(int index) OVERRIDE; | 27 virtual bool CanDuplicateContentsAt(int index) OVERRIDE; |
28 virtual void DuplicateContentsAt(int index) OVERRIDE; | 28 virtual void DuplicateContentsAt(int index) OVERRIDE; |
29 virtual void CloseFrameAfterDragSession() OVERRIDE; | 29 virtual void CloseFrameAfterDragSession() OVERRIDE; |
30 virtual void CreateHistoricalTab(content::WebContents* contents) OVERRIDE; | 30 virtual void CreateHistoricalTab(content::WebContents* contents) OVERRIDE; |
| 31 virtual bool ShouldRunUnloadListenerBeforeClosing( |
| 32 content::WebContents* contents) OVERRIDE; |
31 virtual bool RunUnloadListenerBeforeClosing( | 33 virtual bool RunUnloadListenerBeforeClosing( |
32 content::WebContents* contents) OVERRIDE; | 34 content::WebContents* contents) OVERRIDE; |
33 virtual RestoreTabType GetRestoreTabType() OVERRIDE; | 35 virtual RestoreTabType GetRestoreTabType() OVERRIDE; |
34 virtual void RestoreTab() OVERRIDE; | 36 virtual void RestoreTab() OVERRIDE; |
35 virtual bool CanBookmarkAllTabs() const OVERRIDE; | 37 virtual bool CanBookmarkAllTabs() const OVERRIDE; |
36 virtual void BookmarkAllTabs() OVERRIDE; | 38 virtual void BookmarkAllTabs() OVERRIDE; |
37 | 39 |
38 private: | 40 private: |
39 DISALLOW_COPY_AND_ASSIGN(TestTabStripModelDelegate); | 41 DISALLOW_COPY_AND_ASSIGN(TestTabStripModelDelegate); |
40 }; | 42 }; |
41 | 43 |
42 #endif // CHROME_BROWSER_UI_TABS_TEST_TAB_STRIP_MODEL_DELEGATE_H_ | 44 #endif // CHROME_BROWSER_UI_TABS_TEST_TAB_STRIP_MODEL_DELEGATE_H_ |
OLD | NEW |