| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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_VIEWS_TABS_TAB_STRIP_H_ | 5 #ifndef CHROME_BROWSER_VIEWS_TABS_TAB_STRIP_H_ |
| 6 #define CHROME_BROWSER_VIEWS_TABS_TAB_STRIP_H_ | 6 #define CHROME_BROWSER_VIEWS_TABS_TAB_STRIP_H_ |
| 7 | 7 |
| 8 #include "base/gfx/point.h" | 8 #include "base/gfx/point.h" |
| 9 #include "base/message_loop.h" | 9 #include "base/message_loop.h" |
| 10 #include "chrome/browser/tabs/tab_strip_model.h" | 10 #include "chrome/browser/tabs/tab_strip_model.h" |
| 11 #include "chrome/browser/views/tabs/tab.h" | 11 #include "chrome/browser/views/tabs/tab.h" |
| 12 #include "views/controls/button/image_button.h" | 12 #include "views/controls/button/image_button.h" |
| 13 #include "views/controls/menu/menu.h" | |
| 14 #include "views/view.h" | 13 #include "views/view.h" |
| 15 #if defined(OS_WIN) | 14 #if defined(OS_WIN) |
| 16 #include "views/widget/widget_win.h" | 15 #include "views/widget/widget_win.h" |
| 17 #endif | 16 #endif |
| 18 | 17 |
| 19 class DraggedTabController; | 18 class DraggedTabController; |
| 20 class ScopedMouseCloseWidthCalculator; | 19 class ScopedMouseCloseWidthCalculator; |
| 21 class TabStripModel; | 20 class TabStripModel; |
| 22 | 21 |
| 23 namespace views { | 22 namespace views { |
| (...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 368 }; | 367 }; |
| 369 std::vector<TabData> tab_data_; | 368 std::vector<TabData> tab_data_; |
| 370 | 369 |
| 371 // The currently running animation. | 370 // The currently running animation. |
| 372 scoped_ptr<TabAnimation> active_animation_; | 371 scoped_ptr<TabAnimation> active_animation_; |
| 373 | 372 |
| 374 DISALLOW_COPY_AND_ASSIGN(TabStrip); | 373 DISALLOW_COPY_AND_ASSIGN(TabStrip); |
| 375 }; | 374 }; |
| 376 | 375 |
| 377 #endif // CHROME_BROWSER_VIEWS_TABS_TAB_STRIP_H_ | 376 #endif // CHROME_BROWSER_VIEWS_TABS_TAB_STRIP_H_ |
| OLD | NEW |