| 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_WM_OVERVIEW_WINDOW_SELECTOR_H_ |
| 6 #define ASH_COMMON_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/common/wm_activation_observer.h" | 16 #include "ash/common/wm_activation_observer.h" |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 // the text filtering textfield. | 190 // the text filtering textfield. |
| 191 int text_filter_bottom_; | 191 int text_filter_bottom_; |
| 192 | 192 |
| 193 bool is_shut_down_ = false; | 193 bool is_shut_down_ = false; |
| 194 | 194 |
| 195 DISALLOW_COPY_AND_ASSIGN(WindowSelector); | 195 DISALLOW_COPY_AND_ASSIGN(WindowSelector); |
| 196 }; | 196 }; |
| 197 | 197 |
| 198 } // namespace ash | 198 } // namespace ash |
| 199 | 199 |
| 200 #endif // ASH_COMMON_WM_OVERVIEW_WINDOW_SELECTOR_H_ | 200 #endif // ASH_WM_OVERVIEW_WINDOW_SELECTOR_H_ |
| OLD | NEW |