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_BROWSER_TAB_STRIP_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_TABS_BROWSER_TAB_STRIP_CONTROLLER_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_TABS_BROWSER_TAB_STRIP_CONTROLLER_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_TABS_BROWSER_TAB_STRIP_CONTROLLER_H_ |
7 | 7 |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
10 #include "base/prefs/pref_change_registrar.h" | 10 #include "base/prefs/pref_change_registrar.h" |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 virtual void OnDropIndexUpdate(int index, bool drop_before) OVERRIDE; | 66 virtual void OnDropIndexUpdate(int index, bool drop_before) OVERRIDE; |
67 virtual void PerformDrop(bool drop_before, | 67 virtual void PerformDrop(bool drop_before, |
68 int index, | 68 int index, |
69 const GURL& url) OVERRIDE; | 69 const GURL& url) OVERRIDE; |
70 virtual bool IsCompatibleWith(TabStrip* other) const OVERRIDE; | 70 virtual bool IsCompatibleWith(TabStrip* other) const OVERRIDE; |
71 virtual void CreateNewTab() OVERRIDE; | 71 virtual void CreateNewTab() OVERRIDE; |
72 virtual bool IsIncognito() OVERRIDE; | 72 virtual bool IsIncognito() OVERRIDE; |
73 virtual void LayoutTypeMaybeChanged() OVERRIDE; | 73 virtual void LayoutTypeMaybeChanged() OVERRIDE; |
74 virtual void OnStartedDraggingTabs() OVERRIDE; | 74 virtual void OnStartedDraggingTabs() OVERRIDE; |
75 virtual void OnStoppedDraggingTabs() OVERRIDE; | 75 virtual void OnStoppedDraggingTabs() OVERRIDE; |
| 76 virtual Profile* GetProfile() OVERRIDE; |
76 | 77 |
77 // TabStripModelObserver implementation: | 78 // TabStripModelObserver implementation: |
78 virtual void TabInsertedAt(content::WebContents* contents, | 79 virtual void TabInsertedAt(content::WebContents* contents, |
79 int model_index, | 80 int model_index, |
80 bool is_active) OVERRIDE; | 81 bool is_active) OVERRIDE; |
81 virtual void TabDetachedAt(content::WebContents* contents, | 82 virtual void TabDetachedAt(content::WebContents* contents, |
82 int model_index) OVERRIDE; | 83 int model_index) OVERRIDE; |
83 virtual void TabSelectionChanged( | 84 virtual void TabSelectionChanged( |
84 TabStripModel* tab_strip_model, | 85 TabStripModel* tab_strip_model, |
85 const ui::ListSelectionModel& old_model) OVERRIDE; | 86 const ui::ListSelectionModel& old_model) OVERRIDE; |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 // top-of-window views to be revealed when the user is dragging |tabstrip|'s | 156 // top-of-window views to be revealed when the user is dragging |tabstrip|'s |
156 // tabs. | 157 // tabs. |
157 scoped_ptr<ImmersiveRevealedLock> immersive_reveal_lock_; | 158 scoped_ptr<ImmersiveRevealedLock> immersive_reveal_lock_; |
158 | 159 |
159 PrefChangeRegistrar local_pref_registrar_; | 160 PrefChangeRegistrar local_pref_registrar_; |
160 | 161 |
161 DISALLOW_COPY_AND_ASSIGN(BrowserTabStripController); | 162 DISALLOW_COPY_AND_ASSIGN(BrowserTabStripController); |
162 }; | 163 }; |
163 | 164 |
164 #endif // CHROME_BROWSER_UI_VIEWS_TABS_BROWSER_TAB_STRIP_CONTROLLER_H_ | 165 #endif // CHROME_BROWSER_UI_VIEWS_TABS_BROWSER_TAB_STRIP_CONTROLLER_H_ |
OLD | NEW |