| 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 UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_DRAG_DROP_CLIENT_AURAX11_H_ | 5 #ifndef UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_DRAG_DROP_CLIENT_AURAX11_H_ |
| 6 #define UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_DRAG_DROP_CLIENT_AURAX11_H_ | 6 #define UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_DRAG_DROP_CLIENT_AURAX11_H_ |
| 7 | 7 |
| 8 #include <X11/Xlib.h> | 8 #include <X11/Xlib.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 class DragDropDelegate; | 30 class DragDropDelegate; |
| 31 } | 31 } |
| 32 } | 32 } |
| 33 | 33 |
| 34 namespace gfx { | 34 namespace gfx { |
| 35 class ImageSkia; | 35 class ImageSkia; |
| 36 class Point; | 36 class Point; |
| 37 } | 37 } |
| 38 | 38 |
| 39 namespace ui { | 39 namespace ui { |
| 40 class DragSource; | |
| 41 class DropTargetEvent; | 40 class DropTargetEvent; |
| 42 class OSExchangeData; | 41 class OSExchangeData; |
| 43 class OSExchangeDataProviderAuraX11; | 42 class OSExchangeDataProviderAuraX11; |
| 44 class SelectionFormatMap; | 43 class SelectionFormatMap; |
| 45 } | 44 } |
| 46 | 45 |
| 47 namespace views { | 46 namespace views { |
| 48 class DesktopNativeCursorManager; | 47 class DesktopNativeCursorManager; |
| 49 class Widget; | 48 class Widget; |
| 50 class X11MoveLoop; | 49 class X11MoveLoop; |
| (...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 287 gfx::Vector2d drag_widget_offset_; | 286 gfx::Vector2d drag_widget_offset_; |
| 288 | 287 |
| 289 base::WeakPtrFactory<DesktopDragDropClientAuraX11> weak_ptr_factory_; | 288 base::WeakPtrFactory<DesktopDragDropClientAuraX11> weak_ptr_factory_; |
| 290 | 289 |
| 291 DISALLOW_COPY_AND_ASSIGN(DesktopDragDropClientAuraX11); | 290 DISALLOW_COPY_AND_ASSIGN(DesktopDragDropClientAuraX11); |
| 292 }; | 291 }; |
| 293 | 292 |
| 294 } // namespace views | 293 } // namespace views |
| 295 | 294 |
| 296 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_DRAG_DROP_CLIENT_AURAX11_H_ | 295 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_DRAG_DROP_CLIENT_AURAX11_H_ |
| OLD | NEW |