| 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_VIEW_TAB_ICON_VIEW_H__ | 5 #ifndef CHROME_BROWSER_VIEW_TAB_ICON_VIEW_H_ |
| 6 #define CHROME_BROWSER_VIEW_TAB_ICON_VIEW_H__ | 6 #define CHROME_BROWSER_VIEW_TAB_ICON_VIEW_H_ |
| 7 | 7 |
| 8 #include "chrome/views/view.h" | 8 #include "chrome/views/view.h" |
| 9 | 9 |
| 10 class SkBitmap; | 10 class SkBitmap; |
| 11 class TabContents; | 11 class TabContents; |
| 12 | 12 |
| 13 //////////////////////////////////////////////////////////////////////////////// | 13 //////////////////////////////////////////////////////////////////////////////// |
| 14 // | 14 // |
| 15 // A view to display a tab fav icon or a throbber. | 15 // A view to display a tab fav icon or a throbber. |
| 16 // | 16 // |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 // Whether the throbber is running. | 59 // Whether the throbber is running. |
| 60 bool throbber_running_; | 60 bool throbber_running_; |
| 61 | 61 |
| 62 // Whether we should display our light or dark style. | 62 // Whether we should display our light or dark style. |
| 63 bool is_light_; | 63 bool is_light_; |
| 64 | 64 |
| 65 // Current frame of the throbber being painted. This is only used if | 65 // Current frame of the throbber being painted. This is only used if |
| 66 // throbber_running_ is true. | 66 // throbber_running_ is true. |
| 67 int throbber_frame_; | 67 int throbber_frame_; |
| 68 | 68 |
| 69 DISALLOW_EVIL_CONSTRUCTORS(TabIconView); | 69 DISALLOW_COPY_AND_ASSIGN(TabIconView); |
| 70 }; | 70 }; |
| 71 | 71 |
| 72 #endif // CHROME_BROWSER_VIEW_TAB_ICON_VIEW_H__ | 72 #endif // CHROME_BROWSER_VIEW_TAB_ICON_VIEW_H_ |
| 73 | |
| OLD | NEW |