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_WM_OVERVIEW_WINDOW_SELECTOR_H_ | 5 #ifndef ASH_WM_OVERVIEW_WINDOW_SELECTOR_H_ |
6 #define ASH_WM_OVERVIEW_WINDOW_SELECTOR_H_ | 6 #define ASH_WM_OVERVIEW_WINDOW_SELECTOR_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
11 #include <memory> | 11 #include <memory> |
12 #include <set> | 12 #include <set> |
13 #include <vector> | 13 #include <vector> |
14 | 14 |
15 #include "ash/ash_export.h" | 15 #include "ash/ash_export.h" |
16 #include "ash/wm/common/wm_activation_observer.h" | 16 #include "ash/common/wm/wm_activation_observer.h" |
17 #include "ash/wm/common/wm_window_observer.h" | 17 #include "ash/common/wm/wm_window_observer.h" |
18 #include "base/macros.h" | 18 #include "base/macros.h" |
19 #include "base/time/time.h" | 19 #include "base/time/time.h" |
20 #include "ui/display/display_observer.h" | 20 #include "ui/display/display_observer.h" |
21 #include "ui/views/controls/textfield/textfield_controller.h" | 21 #include "ui/views/controls/textfield/textfield_controller.h" |
22 | 22 |
23 namespace views { | 23 namespace views { |
24 class Textfield; | 24 class Textfield; |
25 class Widget; | 25 class Widget; |
26 } | 26 } |
27 | 27 |
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
174 // Tracks whether minimized windows are currently being restored for overview | 174 // Tracks whether minimized windows are currently being restored for overview |
175 // mode. | 175 // mode. |
176 bool restoring_minimized_windows_; | 176 bool restoring_minimized_windows_; |
177 | 177 |
178 DISALLOW_COPY_AND_ASSIGN(WindowSelector); | 178 DISALLOW_COPY_AND_ASSIGN(WindowSelector); |
179 }; | 179 }; |
180 | 180 |
181 } // namespace ash | 181 } // namespace ash |
182 | 182 |
183 #endif // ASH_WM_OVERVIEW_WINDOW_SELECTOR_H_ | 183 #endif // ASH_WM_OVERVIEW_WINDOW_SELECTOR_H_ |
OLD | NEW |