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_VIEWS_TABS_FAKE_BASE_TAB_STRIP_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_TABS_FAKE_BASE_TAB_STRIP_CONTROLLER_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_TABS_FAKE_BASE_TAB_STRIP_CONTROLLER_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_TABS_FAKE_BASE_TAB_STRIP_CONTROLLER_H_ |
7 | 7 |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 #include "chrome/browser/ui/views/tabs/tab_strip_controller.h" | 9 #include "chrome/browser/ui/views/tabs/tab_strip_controller.h" |
10 #include "ui/base/models/list_selection_model.h" | 10 #include "ui/base/models/list_selection_model.h" |
(...skipping 18 matching lines...) Expand all Loading... |
29 virtual int GetActiveIndex() const OVERRIDE; | 29 virtual int GetActiveIndex() const OVERRIDE; |
30 virtual bool IsTabSelected(int index) const OVERRIDE; | 30 virtual bool IsTabSelected(int index) const OVERRIDE; |
31 virtual bool IsTabPinned(int index) const OVERRIDE; | 31 virtual bool IsTabPinned(int index) const OVERRIDE; |
32 virtual bool IsNewTabPage(int index) const OVERRIDE; | 32 virtual bool IsNewTabPage(int index) const OVERRIDE; |
33 virtual void SelectTab(int index) OVERRIDE; | 33 virtual void SelectTab(int index) OVERRIDE; |
34 virtual void ExtendSelectionTo(int index) OVERRIDE; | 34 virtual void ExtendSelectionTo(int index) OVERRIDE; |
35 virtual void ToggleSelected(int index) OVERRIDE; | 35 virtual void ToggleSelected(int index) OVERRIDE; |
36 virtual void AddSelectionFromAnchorTo(int index) OVERRIDE; | 36 virtual void AddSelectionFromAnchorTo(int index) OVERRIDE; |
37 virtual void CloseTab(int index, CloseTabSource source) OVERRIDE; | 37 virtual void CloseTab(int index, CloseTabSource source) OVERRIDE; |
38 virtual void ShowContextMenuForTab(Tab* tab, | 38 virtual void ShowContextMenuForTab(Tab* tab, |
39 const gfx::Point& p) OVERRIDE; | 39 const gfx::Point& p, |
| 40 ui::MenuSourceType source_type) OVERRIDE; |
40 virtual void UpdateLoadingAnimations() OVERRIDE; | 41 virtual void UpdateLoadingAnimations() OVERRIDE; |
41 virtual int HasAvailableDragActions() const OVERRIDE; | 42 virtual int HasAvailableDragActions() const OVERRIDE; |
42 virtual void OnDropIndexUpdate(int index, bool drop_before) OVERRIDE; | 43 virtual void OnDropIndexUpdate(int index, bool drop_before) OVERRIDE; |
43 virtual void PerformDrop(bool drop_before, | 44 virtual void PerformDrop(bool drop_before, |
44 int index, | 45 int index, |
45 const GURL& url) OVERRIDE; | 46 const GURL& url) OVERRIDE; |
46 virtual bool IsCompatibleWith(TabStrip* other) const OVERRIDE; | 47 virtual bool IsCompatibleWith(TabStrip* other) const OVERRIDE; |
47 virtual void CreateNewTab() OVERRIDE; | 48 virtual void CreateNewTab() OVERRIDE; |
48 virtual bool IsIncognito() OVERRIDE; | 49 virtual bool IsIncognito() OVERRIDE; |
49 virtual void LayoutTypeMaybeChanged() OVERRIDE; | 50 virtual void LayoutTypeMaybeChanged() OVERRIDE; |
50 virtual void OnStartedDraggingTabs() OVERRIDE; | 51 virtual void OnStartedDraggingTabs() OVERRIDE; |
51 virtual void OnStoppedDraggingTabs() OVERRIDE; | 52 virtual void OnStoppedDraggingTabs() OVERRIDE; |
52 | 53 |
53 private: | 54 private: |
54 TabStrip* tab_strip_; | 55 TabStrip* tab_strip_; |
55 | 56 |
56 int num_tabs_; | 57 int num_tabs_; |
57 int active_index_; | 58 int active_index_; |
58 | 59 |
59 ui::ListSelectionModel selection_model_; | 60 ui::ListSelectionModel selection_model_; |
60 | 61 |
61 DISALLOW_COPY_AND_ASSIGN(FakeBaseTabStripController); | 62 DISALLOW_COPY_AND_ASSIGN(FakeBaseTabStripController); |
62 }; | 63 }; |
63 | 64 |
64 #endif // CHROME_BROWSER_UI_VIEWS_TABS_FAKE_BASE_TAB_STRIP_CONTROLLER_H_ | 65 #endif // CHROME_BROWSER_UI_VIEWS_TABS_FAKE_BASE_TAB_STRIP_CONTROLLER_H_ |
OLD | NEW |