| 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_WM_OVERVIEW_WINDOW_GRID_H_ | 5 #ifndef ASH_COMMON_WM_OVERVIEW_WINDOW_GRID_H_ |
| 6 #define ASH_WM_OVERVIEW_WINDOW_GRID_H_ | 6 #define ASH_COMMON_WM_OVERVIEW_WINDOW_GRID_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| 11 #include <set> | 11 #include <set> |
| 12 #include <vector> | 12 #include <vector> |
| 13 | 13 |
| 14 #include "ash/common/wm/overview/window_selector.h" |
| 14 #include "ash/common/wm_window_observer.h" | 15 #include "ash/common/wm_window_observer.h" |
| 15 #include "ash/wm/overview/window_selector.h" | |
| 16 #include "base/macros.h" | 16 #include "base/macros.h" |
| 17 #include "base/memory/scoped_vector.h" | 17 #include "base/memory/scoped_vector.h" |
| 18 | 18 |
| 19 namespace views { | 19 namespace views { |
| 20 class Widget; | 20 class Widget; |
| 21 } | 21 } |
| 22 | 22 |
| 23 namespace ash { | 23 namespace ash { |
| 24 | 24 |
| 25 class WindowSelectorItem; | 25 class WindowSelectorItem; |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 size_t selected_index_; | 173 size_t selected_index_; |
| 174 | 174 |
| 175 // Number of columns in the grid. | 175 // Number of columns in the grid. |
| 176 size_t num_columns_; | 176 size_t num_columns_; |
| 177 | 177 |
| 178 DISALLOW_COPY_AND_ASSIGN(WindowGrid); | 178 DISALLOW_COPY_AND_ASSIGN(WindowGrid); |
| 179 }; | 179 }; |
| 180 | 180 |
| 181 } // namespace ash | 181 } // namespace ash |
| 182 | 182 |
| 183 #endif // ASH_WM_OVERVIEW_WINDOW_GRID_H_ | 183 #endif // ASH_COMMON_WM_OVERVIEW_WINDOW_GRID_H_ |
| OLD | NEW |