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 UI_AURA_MUS_DRAG_DROP_CONTROLLER_MUS_H_ | 5 #ifndef UI_AURA_MUS_DRAG_DROP_CONTROLLER_MUS_H_ |
6 #define UI_AURA_MUS_DRAG_DROP_CONTROLLER_MUS_H_ | 6 #define UI_AURA_MUS_DRAG_DROP_CONTROLLER_MUS_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <map> | 10 #include <map> |
11 #include <memory> | 11 #include <memory> |
12 #include <vector> | 12 #include <vector> |
13 | 13 |
14 #include "ui/aura/client/drag_drop_client.h" | 14 #include "ui/aura/client/drag_drop_client.h" |
15 #include "ui/aura/window_tracker.h" | 15 #include "ui/aura/window_tracker.h" |
16 #include "ui/base/dragdrop/drag_drop_types.h" | 16 #include "ui/base/dragdrop/drag_drop_types.h" |
17 | 17 |
18 namespace ui { | 18 namespace ui { |
19 class DropTargetEvent; | 19 class DropTargetEvent; |
20 class LocatedEvent; | |
21 class OSExchangeData; | 20 class OSExchangeData; |
22 | 21 |
23 namespace mojom { | 22 namespace mojom { |
24 class WindowTree; | 23 class WindowTree; |
25 } | 24 } |
26 } | 25 } |
27 | 26 |
28 namespace aura { | 27 namespace aura { |
29 | 28 |
30 class DragDropControllerHost; | 29 class DragDropControllerHost; |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 | 104 |
106 // Used to track the current drop target. | 105 // Used to track the current drop target. |
107 WindowTracker drop_target_window_tracker_; | 106 WindowTracker drop_target_window_tracker_; |
108 | 107 |
109 DISALLOW_COPY_AND_ASSIGN(DragDropControllerMus); | 108 DISALLOW_COPY_AND_ASSIGN(DragDropControllerMus); |
110 }; | 109 }; |
111 | 110 |
112 } // namespace aura | 111 } // namespace aura |
113 | 112 |
114 #endif // UI_AURA_MUS_DRAG_DROP_CONTROLLER_MUS_H_ | 113 #endif // UI_AURA_MUS_DRAG_DROP_CONTROLLER_MUS_H_ |
OLD | NEW |