| 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 ASH_COMMON_SYSTEM_TRAY_TRAY_DETAILS_VIEW_H_ | 5 #ifndef ASH_COMMON_SYSTEM_TRAY_TRAY_DETAILS_VIEW_H_ |
| 6 #define ASH_COMMON_SYSTEM_TRAY_TRAY_DETAILS_VIEW_H_ | 6 #define ASH_COMMON_SYSTEM_TRAY_TRAY_DETAILS_VIEW_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "ash/ash_export.h" | 10 #include "ash/ash_export.h" |
| 11 #include "ash/common/system/tray/special_popup_row.h" | 11 #include "ash/common/system/tray/special_popup_row.h" |
| 12 #include "ash/common/system/tray/tray_constants.h" | 12 #include "ash/common/system/tray/tray_constants.h" |
| 13 #include "ash/common/system/tray/view_click_listener.h" | 13 #include "ash/common/system/tray/view_click_listener.h" |
| 14 #include "base/macros.h" | 14 #include "base/macros.h" |
| 15 #include "ui/views/controls/button/button.h" | 15 #include "ui/views/controls/button/button.h" |
| 16 #include "ui/views/view.h" | 16 #include "ui/views/view.h" |
| 17 | 17 |
| 18 namespace base { | 18 namespace base { |
| 19 class OneShotTimer; | 19 class OneShotTimer; |
| 20 } // namespace base | 20 } // namespace base |
| 21 | 21 |
| 22 namespace views { | 22 namespace views { |
| 23 class BoxLayout; | 23 class BoxLayout; |
| 24 class CustomButton; | 24 class CustomButton; |
| 25 class Label; | 25 class Label; |
| 26 class ProgressBar; | 26 class ProgressBar; |
| 27 class ScrollView; | |
| 28 } // namespace views | 27 } // namespace views |
| 29 | 28 |
| 30 namespace ash { | 29 namespace ash { |
| 31 namespace test { | 30 namespace test { |
| 32 class TrayDetailsViewTest; | 31 class TrayDetailsViewTest; |
| 33 } // namespace test | 32 } // namespace test |
| 34 | 33 |
| 35 class FixedSizedScrollView; | 34 class FixedSizedScrollView; |
| 36 class ScrollBorder; | 35 class ScrollBorder; |
| 37 class SystemTrayItem; | 36 class SystemTrayItem; |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 | 149 |
| 151 // Used to delay the transition to the default view. | 150 // Used to delay the transition to the default view. |
| 152 std::unique_ptr<base::OneShotTimer> transition_delay_timer_; | 151 std::unique_ptr<base::OneShotTimer> transition_delay_timer_; |
| 153 | 152 |
| 154 DISALLOW_COPY_AND_ASSIGN(TrayDetailsView); | 153 DISALLOW_COPY_AND_ASSIGN(TrayDetailsView); |
| 155 }; | 154 }; |
| 156 | 155 |
| 157 } // namespace ash | 156 } // namespace ash |
| 158 | 157 |
| 159 #endif // ASH_COMMON_SYSTEM_TRAY_TRAY_DETAILS_VIEW_H_ | 158 #endif // ASH_COMMON_SYSTEM_TRAY_TRAY_DETAILS_VIEW_H_ |
| OLD | NEW |