| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_WM_WINDOW_CYCLE_LIST_H_ | 5 #ifndef ASH_COMMON_WM_WINDOW_CYCLE_LIST_H_ |
| 6 #define ASH_COMMON_WM_WINDOW_CYCLE_LIST_H_ | 6 #define ASH_COMMON_WM_WINDOW_CYCLE_LIST_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "ash/ash_export.h" | 11 #include "ash/ash_export.h" |
| 12 #include "ash/common/wm/window_cycle_controller.h" | 12 #include "ash/common/wm/window_cycle_controller.h" |
| 13 #include "ash/common/wm_window_observer.h" | 13 #include "ash/common/wm_window_observer.h" |
| 14 #include "base/macros.h" | 14 #include "base/macros.h" |
| 15 #include "base/scoped_observer.h" | 15 #include "base/scoped_observer.h" |
| 16 #include "base/timer/timer.h" | 16 #include "base/timer/timer.h" |
| 17 #include "ui/display/display_observer.h" | 17 #include "ui/display/display_observer.h" |
| 18 | 18 |
| 19 namespace display { | 19 namespace display { |
| 20 class Screen; | 20 class Screen; |
| 21 } | 21 } |
| 22 | 22 |
| 23 namespace views { | 23 namespace views { |
| 24 class Label; | |
| 25 class Widget; | 24 class Widget; |
| 26 } | 25 } |
| 27 | 26 |
| 28 namespace ash { | 27 namespace ash { |
| 29 | 28 |
| 30 class ScopedShowWindow; | 29 class ScopedShowWindow; |
| 31 class WindowCycleView; | 30 class WindowCycleView; |
| 32 | 31 |
| 33 // Tracks a set of Windows that can be stepped through. This class is used by | 32 // Tracks a set of Windows that can be stepped through. This class is used by |
| 34 // the WindowCycleController. | 33 // the WindowCycleController. |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 | 101 |
| 103 // A timer to delay showing the UI. Quick Alt+Tab should not flash a UI. | 102 // A timer to delay showing the UI. Quick Alt+Tab should not flash a UI. |
| 104 base::OneShotTimer show_ui_timer_; | 103 base::OneShotTimer show_ui_timer_; |
| 105 | 104 |
| 106 DISALLOW_COPY_AND_ASSIGN(WindowCycleList); | 105 DISALLOW_COPY_AND_ASSIGN(WindowCycleList); |
| 107 }; | 106 }; |
| 108 | 107 |
| 109 } // namespace ash | 108 } // namespace ash |
| 110 | 109 |
| 111 #endif // ASH_COMMON_WM_WINDOW_CYCLE_LIST_H_ | 110 #endif // ASH_COMMON_WM_WINDOW_CYCLE_LIST_H_ |
| OLD | NEW |