| 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_WM_OVERVIEW_WINDOW_SELECTOR_H_ | 5 #ifndef ASH_COMMON_WM_OVERVIEW_WINDOW_SELECTOR_H_ |
| 6 #define ASH_COMMON_WM_OVERVIEW_WINDOW_SELECTOR_H_ | 6 #define ASH_COMMON_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 |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 size_t num_times_textfield_cleared_; | 174 size_t num_times_textfield_cleared_; |
| 175 | 175 |
| 176 // Tracks whether minimized windows are currently being restored for overview | 176 // Tracks whether minimized windows are currently being restored for overview |
| 177 // mode. | 177 // mode. |
| 178 bool restoring_minimized_windows_; | 178 bool restoring_minimized_windows_; |
| 179 | 179 |
| 180 // The distance between the top edge of the screen and the bottom edge of | 180 // The distance between the top edge of the screen and the bottom edge of |
| 181 // the text filtering textfield. | 181 // the text filtering textfield. |
| 182 int text_filter_bottom_; | 182 int text_filter_bottom_; |
| 183 | 183 |
| 184 // True once Shutdown() has been called. |
| 185 bool shutting_down_; |
| 186 |
| 184 DISALLOW_COPY_AND_ASSIGN(WindowSelector); | 187 DISALLOW_COPY_AND_ASSIGN(WindowSelector); |
| 185 }; | 188 }; |
| 186 | 189 |
| 187 } // namespace ash | 190 } // namespace ash |
| 188 | 191 |
| 189 #endif // ASH_COMMON_WM_OVERVIEW_WINDOW_SELECTOR_H_ | 192 #endif // ASH_COMMON_WM_OVERVIEW_WINDOW_SELECTOR_H_ |
| OLD | NEW |