| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "chrome/browser/ui/views/tabs/tab_strip_controller.h" | 10 #include "chrome/browser/ui/views/tabs/tab_strip_controller.h" |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 const gfx::Point& p) OVERRIDE; | 29 const gfx::Point& p) OVERRIDE; |
| 30 virtual void UpdateLoadingAnimations() OVERRIDE; | 30 virtual void UpdateLoadingAnimations() OVERRIDE; |
| 31 virtual int HasAvailableDragActions() const OVERRIDE; | 31 virtual int HasAvailableDragActions() const OVERRIDE; |
| 32 virtual void OnDropIndexUpdate(int index, bool drop_before) OVERRIDE; | 32 virtual void OnDropIndexUpdate(int index, bool drop_before) OVERRIDE; |
| 33 virtual void PerformDrop(bool drop_before, | 33 virtual void PerformDrop(bool drop_before, |
| 34 int index, | 34 int index, |
| 35 const GURL& url) OVERRIDE; | 35 const GURL& url) OVERRIDE; |
| 36 virtual bool IsCompatibleWith(BaseTabStrip* other) const OVERRIDE; | 36 virtual bool IsCompatibleWith(BaseTabStrip* other) const OVERRIDE; |
| 37 virtual void CreateNewTab() OVERRIDE; | 37 virtual void CreateNewTab() OVERRIDE; |
| 38 virtual void ClickActiveTab(int index) OVERRIDE; | 38 virtual void ClickActiveTab(int index) OVERRIDE; |
| 39 virtual bool SizeTabButtonToTopOfTabStrip() OVERRIDE; |
| 39 }; | 40 }; |
| 40 | 41 |
| 41 #endif // CHROME_BROWSER_UI_VIEWS_TABS_FAKE_BASE_TAB_STRIP_CONTROLLER_H_ | 42 #endif // CHROME_BROWSER_UI_VIEWS_TABS_FAKE_BASE_TAB_STRIP_CONTROLLER_H_ |
| 42 | 43 |
| OLD | NEW |