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_VIEWS_MUS_DROP_TARGET_MUS_H_ | 5 #ifndef UI_VIEWS_MUS_DROP_TARGET_MUS_H_ |
6 #define UI_VIEWS_MUS_DROP_TARGET_MUS_H_ | 6 #define UI_VIEWS_MUS_DROP_TARGET_MUS_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <memory> | 9 #include <memory> |
10 #include <string> | 10 #include <string> |
11 #include <vector> | 11 #include <vector> |
12 | 12 |
13 #include "base/macros.h" | 13 #include "base/macros.h" |
14 #include "services/ui/public/cpp/window_drop_target.h" | 14 #include "services/ui/public/cpp/window_drop_target.h" |
15 #include "ui/aura/window_observer.h" | 15 #include "ui/aura/window_observer.h" |
16 | 16 |
17 namespace aura { | 17 namespace aura { |
18 class RootWindow; | |
19 class Window; | 18 class Window; |
20 | 19 |
21 namespace client { | 20 namespace client { |
22 class DragDropDelegate; | 21 class DragDropDelegate; |
23 } | 22 } |
24 } | 23 } |
25 | 24 |
26 namespace ui { | 25 namespace ui { |
27 class DropTargetEvent; | 26 class DropTargetEvent; |
28 class OSExchangeData; | 27 class OSExchangeData; |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 // and cache it so we don't send this multiple times. We reset this value on | 83 // and cache it so we don't send this multiple times. We reset this value on |
85 // leave or drop. | 84 // leave or drop. |
86 std::unique_ptr<ui::OSExchangeData> os_exchange_data_; | 85 std::unique_ptr<ui::OSExchangeData> os_exchange_data_; |
87 | 86 |
88 DISALLOW_COPY_AND_ASSIGN(DropTargetMus); | 87 DISALLOW_COPY_AND_ASSIGN(DropTargetMus); |
89 }; | 88 }; |
90 | 89 |
91 } // namespace views | 90 } // namespace views |
92 | 91 |
93 #endif // UI_VIEWS_MUS_DROP_TARGET_MUS_H_ | 92 #endif // UI_VIEWS_MUS_DROP_TARGET_MUS_H_ |
OLD | NEW |