| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_DRAG_WINDOW_CONTROLLER_H_ | 5 #ifndef ASH_WM_DRAG_WINDOW_CONTROLLER_H_ |
| 6 #define ASH_WM_DRAG_WINDOW_CONTROLLER_H_ | 6 #define ASH_WM_DRAG_WINDOW_CONTROLLER_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "ash/ash_export.h" | 11 #include "ash/ash_export.h" |
| 12 #include "base/gtest_prod_util.h" | 12 #include "base/gtest_prod_util.h" |
| 13 #include "base/macros.h" | 13 #include "base/macros.h" |
| 14 #include "ui/gfx/display.h" | |
| 15 #include "ui/gfx/geometry/rect.h" | 14 #include "ui/gfx/geometry/rect.h" |
| 16 | 15 |
| 17 namespace aura { | 16 namespace aura { |
| 18 class Window; | 17 class Window; |
| 19 } | 18 } |
| 20 | 19 |
| 21 namespace ui { | 20 namespace ui { |
| 22 class LayerTreeOwner; | 21 class LayerTreeOwner; |
| 23 } | 22 } |
| 24 | 23 |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 aura::Window* window_; | 56 aura::Window* window_; |
| 58 | 57 |
| 59 std::vector<std::unique_ptr<DragWindowDetails>> drag_windows_; | 58 std::vector<std::unique_ptr<DragWindowDetails>> drag_windows_; |
| 60 | 59 |
| 61 DISALLOW_COPY_AND_ASSIGN(DragWindowController); | 60 DISALLOW_COPY_AND_ASSIGN(DragWindowController); |
| 62 }; | 61 }; |
| 63 | 62 |
| 64 } // namespace ash | 63 } // namespace ash |
| 65 | 64 |
| 66 #endif // ASH_WM_DRAG_WINDOW_CONTROLLER_H_ | 65 #endif // ASH_WM_DRAG_WINDOW_CONTROLLER_H_ |
| OLD | NEW |