| 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 <set> | 8 #include <set> |
| 9 #include <X11/Xlib.h> | 9 #include <X11/Xlib.h> |
| 10 | 10 |
| 11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 13 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
| 14 #include "base/timer/timer.h" | 14 #include "base/timer/timer.h" |
| 15 #include "ui/aura/window_observer.h" | 15 #include "ui/aura/window_observer.h" |
| 16 #include "ui/base/cursor/cursor.h" | 16 #include "ui/base/cursor/cursor.h" |
| 17 #include "ui/base/dragdrop/drag_drop_types.h" | 17 #include "ui/base/dragdrop/drag_drop_types.h" |
| 18 #include "ui/gfx/point.h" | 18 #include "ui/gfx/geometry/point.h" |
| 19 #include "ui/gfx/x/x11_atom_cache.h" | 19 #include "ui/gfx/x/x11_atom_cache.h" |
| 20 #include "ui/views/views_export.h" | 20 #include "ui/views/views_export.h" |
| 21 #include "ui/views/widget/desktop_aura/x11_whole_screen_move_loop.h" | 21 #include "ui/views/widget/desktop_aura/x11_whole_screen_move_loop.h" |
| 22 #include "ui/views/widget/desktop_aura/x11_whole_screen_move_loop_delegate.h" | 22 #include "ui/views/widget/desktop_aura/x11_whole_screen_move_loop_delegate.h" |
| 23 #include "ui/wm/public/drag_drop_client.h" | 23 #include "ui/wm/public/drag_drop_client.h" |
| 24 | 24 |
| 25 namespace aura { | 25 namespace aura { |
| 26 namespace client { | 26 namespace client { |
| 27 class DragDropDelegate; | 27 class DragDropDelegate; |
| 28 } | 28 } |
| (...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 253 gfx::NativeCursor move_grab_cursor_; | 253 gfx::NativeCursor move_grab_cursor_; |
| 254 | 254 |
| 255 base::WeakPtrFactory<DesktopDragDropClientAuraX11> weak_ptr_factory_; | 255 base::WeakPtrFactory<DesktopDragDropClientAuraX11> weak_ptr_factory_; |
| 256 | 256 |
| 257 DISALLOW_COPY_AND_ASSIGN(DesktopDragDropClientAuraX11); | 257 DISALLOW_COPY_AND_ASSIGN(DesktopDragDropClientAuraX11); |
| 258 }; | 258 }; |
| 259 | 259 |
| 260 } // namespace views | 260 } // namespace views |
| 261 | 261 |
| 262 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_DRAG_DROP_CLIENT_AURAX11_H_ | 262 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_DRAG_DROP_CLIENT_AURAX11_H_ |
| OLD | NEW |