| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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_SYSTEM_TRAY_SPECIAL_POPUP_ROW_H_ | 5 #ifndef ASH_COMMON_SYSTEM_TRAY_SPECIAL_POPUP_ROW_H_ |
| 6 #define ASH_COMMON_SYSTEM_TRAY_SPECIAL_POPUP_ROW_H_ | 6 #define ASH_COMMON_SYSTEM_TRAY_SPECIAL_POPUP_ROW_H_ |
| 7 | 7 |
| 8 #include "ash/ash_export.h" | 8 #include "ash/ash_export.h" |
| 9 #include "ash/common/login_status.h" | 9 #include "ash/common/login_status.h" |
| 10 #include "ash/resources/vector_icons/vector_icons.h" | 10 #include "ash/resources/vector_icons/vector_icons.h" |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "ui/gfx/geometry/size.h" | 12 #include "ui/gfx/geometry/size.h" |
| 13 #include "ui/views/view.h" | 13 #include "ui/views/view.h" |
| 14 | 14 |
| 15 namespace ash { | 15 namespace ash { |
| 16 class ThrobberView; | |
| 17 class TrayItemView; | |
| 18 class TrayPopupHeaderButton; | |
| 19 class ViewClickListener; | 16 class ViewClickListener; |
| 20 | 17 |
| 21 // Not used in material design. This class represents the bottom row of | 18 // Not used in material design. This class represents the bottom row of |
| 22 // detailed views and the bottom row of the system menu (date, help, power, | 19 // detailed views and the bottom row of the system menu (date, help, power, |
| 23 // and lock). This row has a fixed height. | 20 // and lock). This row has a fixed height. |
| 24 // TODO(tdanderson): Remove this class when material design is enabled by | 21 // TODO(tdanderson): Remove this class when material design is enabled by |
| 25 // default. See crbug.com/614453. | 22 // default. See crbug.com/614453. |
| 26 class ASH_EXPORT SpecialPopupRow : public views::View { | 23 class ASH_EXPORT SpecialPopupRow : public views::View { |
| 27 public: | 24 public: |
| 28 SpecialPopupRow(); | 25 SpecialPopupRow(); |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 | 58 |
| 62 // The container for the views positioned after |content_|. | 59 // The container for the views positioned after |content_|. |
| 63 views::View* views_after_content_container_; | 60 views::View* views_after_content_container_; |
| 64 | 61 |
| 65 DISALLOW_COPY_AND_ASSIGN(SpecialPopupRow); | 62 DISALLOW_COPY_AND_ASSIGN(SpecialPopupRow); |
| 66 }; | 63 }; |
| 67 | 64 |
| 68 } // namespace ash | 65 } // namespace ash |
| 69 | 66 |
| 70 #endif // ASH_COMMON_SYSTEM_TRAY_SPECIAL_POPUP_ROW_H_ | 67 #endif // ASH_COMMON_SYSTEM_TRAY_SPECIAL_POPUP_ROW_H_ |
| OLD | NEW |