| 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_DRAG_DROP_CLIENT_MUS_H_ | 5 #ifndef UI_VIEWS_MUS_DRAG_DROP_CLIENT_MUS_H_ |
| 6 #define UI_VIEWS_MUS_DRAG_DROP_CLIENT_MUS_H_ | 6 #define UI_VIEWS_MUS_DRAG_DROP_CLIENT_MUS_H_ |
| 7 | 7 |
| 8 #include "base/callback.h" | 8 #include "base/callback.h" |
| 9 #include "ui/aura/client/drag_drop_client.h" |
| 9 #include "ui/base/dragdrop/drag_drop_types.h" | 10 #include "ui/base/dragdrop/drag_drop_types.h" |
| 10 #include "ui/wm/public/drag_drop_client.h" | |
| 11 | 11 |
| 12 namespace aura { | 12 namespace aura { |
| 13 class Window; | 13 class Window; |
| 14 } | 14 } |
| 15 | 15 |
| 16 namespace ui { | 16 namespace ui { |
| 17 class LocatedEvent; | 17 class LocatedEvent; |
| 18 class OSExchangeData; | 18 class OSExchangeData; |
| 19 class Window; | 19 class Window; |
| 20 } | 20 } |
| (...skipping 29 matching lines...) Expand all Loading... |
| 50 ui::Window* ui_window_; | 50 ui::Window* ui_window_; |
| 51 | 51 |
| 52 base::Closure runloop_quit_closure_; | 52 base::Closure runloop_quit_closure_; |
| 53 | 53 |
| 54 DISALLOW_COPY_AND_ASSIGN(DragDropClientMus); | 54 DISALLOW_COPY_AND_ASSIGN(DragDropClientMus); |
| 55 }; | 55 }; |
| 56 | 56 |
| 57 } // namespace views | 57 } // namespace views |
| 58 | 58 |
| 59 #endif // UI_VIEWS_MUS_DRAG_DROP_CLIENT_MUS_H_ | 59 #endif // UI_VIEWS_MUS_DRAG_DROP_CLIENT_MUS_H_ |
| OLD | NEW |