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_COMMON_WINDOW_POSITIONER_H_ | 5 #ifndef ASH_COMMON_WM_WINDOW_POSITIONER_H_ |
6 #define ASH_WM_COMMON_WINDOW_POSITIONER_H_ | 6 #define ASH_COMMON_WM_WINDOW_POSITIONER_H_ |
7 | 7 |
8 #include "ash/ash_export.h" | 8 #include "ash/ash_export.h" |
9 #include "base/macros.h" | 9 #include "base/macros.h" |
10 #include "ui/base/ui_base_types.h" | 10 #include "ui/base/ui_base_types.h" |
11 | 11 |
12 namespace display { | 12 namespace display { |
13 class Display; | 13 class Display; |
14 } | 14 } |
15 | 15 |
16 namespace gfx { | 16 namespace gfx { |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 | 122 |
123 // The last used position. | 123 // The last used position. |
124 int last_popup_position_x_; | 124 int last_popup_position_x_; |
125 int last_popup_position_y_; | 125 int last_popup_position_y_; |
126 | 126 |
127 DISALLOW_COPY_AND_ASSIGN(WindowPositioner); | 127 DISALLOW_COPY_AND_ASSIGN(WindowPositioner); |
128 }; | 128 }; |
129 | 129 |
130 } // namespace ash | 130 } // namespace ash |
131 | 131 |
132 #endif // ASH_WM_COMMON_WINDOW_POSITIONER_H_ | 132 #endif // ASH_COMMON_WM_WINDOW_POSITIONER_H_ |
OLD | NEW |