| 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_TAB_STRIP_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_TABS_TAB_STRIP_H_ |
| 6 #define CHROME_BROWSER_UI_VIEWS_TABS_TAB_STRIP_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_TABS_TAB_STRIP_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/gtest_prod_util.h" | 11 #include "base/gtest_prod_util.h" |
| 12 #include "base/macros.h" |
| 12 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
| 13 #include "base/timer/timer.h" | 14 #include "base/timer/timer.h" |
| 14 #include "chrome/browser/ui/views/tabs/tab.h" | 15 #include "chrome/browser/ui/views/tabs/tab.h" |
| 15 #include "chrome/browser/ui/views/tabs/tab_controller.h" | 16 #include "chrome/browser/ui/views/tabs/tab_controller.h" |
| 16 #include "ui/gfx/animation/animation_container.h" | 17 #include "ui/gfx/animation/animation_container.h" |
| 17 #include "ui/gfx/geometry/point.h" | 18 #include "ui/gfx/geometry/point.h" |
| 18 #include "ui/gfx/geometry/rect.h" | 19 #include "ui/gfx/geometry/rect.h" |
| 19 #include "ui/views/animation/bounds_animator.h" | 20 #include "ui/views/animation/bounds_animator.h" |
| 20 #include "ui/views/controls/button/image_button.h" | 21 #include "ui/views/controls/button/image_button.h" |
| 21 #include "ui/views/mouse_watcher.h" | 22 #include "ui/views/mouse_watcher.h" |
| (...skipping 629 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 651 bool immersive_style_; | 652 bool immersive_style_; |
| 652 | 653 |
| 653 // Our observers. | 654 // Our observers. |
| 654 typedef base::ObserverList<TabStripObserver> TabStripObservers; | 655 typedef base::ObserverList<TabStripObserver> TabStripObservers; |
| 655 TabStripObservers observers_; | 656 TabStripObservers observers_; |
| 656 | 657 |
| 657 DISALLOW_COPY_AND_ASSIGN(TabStrip); | 658 DISALLOW_COPY_AND_ASSIGN(TabStrip); |
| 658 }; | 659 }; |
| 659 | 660 |
| 660 #endif // CHROME_BROWSER_UI_VIEWS_TABS_TAB_STRIP_H_ | 661 #endif // CHROME_BROWSER_UI_VIEWS_TABS_TAB_STRIP_H_ |
| OLD | NEW |