| 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_activation_observer.h" | 16 #include "ash/common/wm_activation_observer.h" |
| 17 #include "base/macros.h" | 17 #include "base/macros.h" |
| 18 #include "base/time/time.h" | 18 #include "base/time/time.h" |
| 19 #include "ui/aura/window_observer.h" | 19 #include "ui/aura/window_observer.h" |
| 20 #include "ui/display/display_observer.h" | 20 #include "ui/display/display_observer.h" |
| 21 #include "ui/gfx/image/image_skia.h" | 21 #include "ui/gfx/image/image_skia.h" |
| 22 #include "ui/views/controls/textfield/textfield_controller.h" | 22 #include "ui/views/controls/textfield/textfield_controller.h" |
| 23 | 23 |
| 24 namespace views { | 24 namespace views { |
| 25 class Textfield; | 25 class Textfield; |
| 26 class Widget; | 26 class Widget; |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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_WM_OVERVIEW_WINDOW_SELECTOR_H_ | 200 #endif // ASH_WM_OVERVIEW_WINDOW_SELECTOR_H_ |
| OLD | NEW |