OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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_SHELF_SHELF_WINDOW_TARGETER_H_ | 5 #ifndef ASH_SHELF_SHELF_WINDOW_TARGETER_H_ |
6 #define ASH_SHELF_SHELF_WINDOW_TARGETER_H_ | 6 #define ASH_SHELF_SHELF_WINDOW_TARGETER_H_ |
7 | 7 |
8 #include "ash/common/shelf/wm_shelf_observer.h" | 8 #include "ash/shelf/wm_shelf_observer.h" |
9 #include "base/macros.h" | 9 #include "base/macros.h" |
10 #include "ui/aura/window_observer.h" | 10 #include "ui/aura/window_observer.h" |
11 #include "ui/wm/core/easy_resize_window_targeter.h" | 11 #include "ui/wm/core/easy_resize_window_targeter.h" |
12 | 12 |
13 namespace ash { | 13 namespace ash { |
14 | 14 |
15 class WmShelf; | 15 class WmShelf; |
16 class WmWindow; | 16 class WmWindow; |
17 | 17 |
18 // ShelfWindowTargeter makes it easier to resize windows with the mouse when the | 18 // ShelfWindowTargeter makes it easier to resize windows with the mouse when the |
(...skipping 14 matching lines...) Expand all Loading... |
33 void WillChangeVisibilityState(ShelfVisibilityState new_state) override; | 33 void WillChangeVisibilityState(ShelfVisibilityState new_state) override; |
34 | 34 |
35 WmShelf* shelf_; | 35 WmShelf* shelf_; |
36 | 36 |
37 DISALLOW_COPY_AND_ASSIGN(ShelfWindowTargeter); | 37 DISALLOW_COPY_AND_ASSIGN(ShelfWindowTargeter); |
38 }; | 38 }; |
39 | 39 |
40 } // namespace ash | 40 } // namespace ash |
41 | 41 |
42 #endif // ASH_SHELF_SHELF_WINDOW_TARGETER_H_ | 42 #endif // ASH_SHELF_SHELF_WINDOW_TARGETER_H_ |
OLD | NEW |