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_BASE_TAB_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_TABS_BASE_TAB_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_TABS_BASE_TAB_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_TABS_BASE_TAB_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
11 #include "chrome/browser/ui/views/tabs/tab_renderer_data.h" | 11 #include "chrome/browser/ui/views/tabs/tab_renderer_data.h" |
12 #include "ui/base/animation/animation_delegate.h" | 12 #include "ui/base/animation/animation_delegate.h" |
13 #include "ui/views/context_menu_controller.h" | 13 #include "ui/views/context_menu_controller.h" |
14 #include "ui/views/controls/button/button.h" | 14 #include "ui/views/controls/button/button.h" |
15 #include "views/view.h" | 15 #include "ui/views/view.h" |
16 | 16 |
17 class BaseTab; | 17 class BaseTab; |
18 class TabController; | 18 class TabController; |
19 | 19 |
20 namespace gfx { | 20 namespace gfx { |
21 class Font; | 21 class Font; |
22 } | 22 } |
23 | 23 |
24 namespace ui { | 24 namespace ui { |
25 class AnimationContainer; | 25 class AnimationContainer; |
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
209 | 209 |
210 ui::ThemeProvider* theme_provider_; | 210 ui::ThemeProvider* theme_provider_; |
211 | 211 |
212 static gfx::Font* font_; | 212 static gfx::Font* font_; |
213 static int font_height_; | 213 static int font_height_; |
214 | 214 |
215 DISALLOW_COPY_AND_ASSIGN(BaseTab); | 215 DISALLOW_COPY_AND_ASSIGN(BaseTab); |
216 }; | 216 }; |
217 | 217 |
218 #endif // CHROME_BROWSER_UI_VIEWS_TABS_BASE_TAB_H_ | 218 #endif // CHROME_BROWSER_UI_VIEWS_TABS_BASE_TAB_H_ |
OLD | NEW |