| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 ASH_COMMON_SHELF_OVERFLOW_BUTTON_H_ | 5 #ifndef ASH_SHELF_OVERFLOW_BUTTON_H_ |
| 6 #define ASH_COMMON_SHELF_OVERFLOW_BUTTON_H_ | 6 #define ASH_SHELF_OVERFLOW_BUTTON_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "ui/gfx/geometry/rect.h" | 9 #include "ui/gfx/geometry/rect.h" |
| 10 #include "ui/gfx/image/image_skia.h" | 10 #include "ui/gfx/image/image_skia.h" |
| 11 #include "ui/views/controls/button/custom_button.h" | 11 #include "ui/views/controls/button/custom_button.h" |
| 12 | 12 |
| 13 namespace ash { | 13 namespace ash { |
| 14 class ShelfView; | 14 class ShelfView; |
| 15 class WmShelf; | 15 class WmShelf; |
| 16 | 16 |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 WmShelf* wm_shelf_; | 57 WmShelf* wm_shelf_; |
| 58 | 58 |
| 59 // Color used to paint the background. | 59 // Color used to paint the background. |
| 60 SkColor background_color_; | 60 SkColor background_color_; |
| 61 | 61 |
| 62 DISALLOW_COPY_AND_ASSIGN(OverflowButton); | 62 DISALLOW_COPY_AND_ASSIGN(OverflowButton); |
| 63 }; | 63 }; |
| 64 | 64 |
| 65 } // namespace ash | 65 } // namespace ash |
| 66 | 66 |
| 67 #endif // ASH_COMMON_SHELF_OVERFLOW_BUTTON_H_ | 67 #endif // ASH_SHELF_OVERFLOW_BUTTON_H_ |
| OLD | NEW |