| 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_TAB_STRIP_MODEL_DELEGATE_H_ | 5 #ifndef CHROME_BROWSER_UI_TABS_TAB_STRIP_MODEL_DELEGATE_H_ |
| 6 #define CHROME_BROWSER_UI_TABS_TAB_STRIP_MODEL_DELEGATE_H_ | 6 #define CHROME_BROWSER_UI_TABS_TAB_STRIP_MODEL_DELEGATE_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "content/public/common/page_transition_types.h" | 11 #include "content/public/common/page_transition_types.h" |
| 12 | 12 |
| 13 class Browser; | 13 class Browser; |
| 14 class DockInfo; | 14 class DockInfo; |
| 15 class GURL; | 15 class GURL; |
| 16 class Profile; | 16 class Profile; |
| 17 class TabContentsWrapper; | 17 class TabContents; |
| 18 typedef TabContents TabContentsWrapper; |
| 18 namespace content { | 19 namespace content { |
| 19 class SiteInstance; | 20 class SiteInstance; |
| 20 struct Referrer; | 21 struct Referrer; |
| 21 } | 22 } |
| 22 namespace gfx { | 23 namespace gfx { |
| 23 class Rect; | 24 class Rect; |
| 24 } | 25 } |
| 25 | 26 |
| 26 /////////////////////////////////////////////////////////////////////////////// | 27 /////////////////////////////////////////////////////////////////////////////// |
| 27 // | 28 // |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 virtual bool CanCloseTab() const = 0; | 118 virtual bool CanCloseTab() const = 0; |
| 118 | 119 |
| 119 // Returns true if the tab strip can use large icons. | 120 // Returns true if the tab strip can use large icons. |
| 120 virtual bool LargeIconsPermitted() const = 0; | 121 virtual bool LargeIconsPermitted() const = 0; |
| 121 | 122 |
| 122 protected: | 123 protected: |
| 123 virtual ~TabStripModelDelegate() {} | 124 virtual ~TabStripModelDelegate() {} |
| 124 }; | 125 }; |
| 125 | 126 |
| 126 #endif // CHROME_BROWSER_UI_TABS_TAB_STRIP_MODEL_DELEGATE_H_ | 127 #endif // CHROME_BROWSER_UI_TABS_TAB_STRIP_MODEL_DELEGATE_H_ |
| OLD | NEW |