OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #include "views/view.h" | 5 #include "views/view.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 | 8 |
9 #include "base/debug/trace_event.h" | 9 #include "base/debug/trace_event.h" |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
12 #include "base/message_loop.h" | 12 #include "base/message_loop.h" |
13 #include "base/stringprintf.h" | 13 #include "base/stringprintf.h" |
14 #include "base/utf_string_conversions.h" | 14 #include "base/utf_string_conversions.h" |
15 #include "third_party/skia/include/core/SkRect.h" | 15 #include "third_party/skia/include/core/SkRect.h" |
16 #include "ui/base/accessibility/accessibility_types.h" | 16 #include "ui/base/accessibility/accessibility_types.h" |
17 #include "ui/base/dragdrop/drag_drop_types.h" | 17 #include "ui/base/dragdrop/drag_drop_types.h" |
18 #include "ui/gfx/canvas_skia.h" | 18 #include "ui/gfx/canvas_skia.h" |
19 #include "ui/gfx/compositor/compositor.h" | 19 #include "ui/gfx/compositor/compositor.h" |
20 #include "ui/gfx/compositor/layer.h" | 20 #include "ui/gfx/compositor/layer.h" |
21 #include "ui/gfx/compositor/layer_animator.h" | 21 #include "ui/gfx/compositor/layer_animator.h" |
22 #include "ui/gfx/interpolated_transform.h" | 22 #include "ui/gfx/interpolated_transform.h" |
23 #include "ui/gfx/path.h" | 23 #include "ui/gfx/path.h" |
24 #include "ui/gfx/point3.h" | 24 #include "ui/gfx/point3.h" |
25 #include "ui/gfx/transform.h" | 25 #include "ui/gfx/transform.h" |
| 26 #include "ui/views/context_menu_controller.h" |
| 27 #include "ui/views/drag_controller.h" |
26 #include "ui/views/layout/layout_manager.h" | 28 #include "ui/views/layout/layout_manager.h" |
27 #include "ui/views/widget/native_widget_private.h" | 29 #include "ui/views/widget/native_widget_private.h" |
28 #include "ui/views/widget/root_view.h" | 30 #include "ui/views/widget/root_view.h" |
29 #include "ui/views/widget/tooltip_manager.h" | 31 #include "ui/views/widget/tooltip_manager.h" |
30 #include "ui/views/widget/widget.h" | 32 #include "ui/views/widget/widget.h" |
31 #include "views/background.h" | 33 #include "views/background.h" |
32 #include "views/context_menu_controller.h" | |
33 #include "views/drag_controller.h" | |
34 #include "views/views_delegate.h" | 34 #include "views/views_delegate.h" |
35 | 35 |
36 #if defined(OS_WIN) | 36 #if defined(OS_WIN) |
37 #include "base/win/scoped_gdi_object.h" | 37 #include "base/win/scoped_gdi_object.h" |
38 #include "ui/views/accessibility/native_view_accessibility_win.h" | 38 #include "ui/views/accessibility/native_view_accessibility_win.h" |
39 #endif | 39 #endif |
40 #if defined(TOOLKIT_USES_GTK) | 40 #if defined(TOOLKIT_USES_GTK) |
41 #include "ui/base/gtk/scoped_handle_gtk.h" | 41 #include "ui/base/gtk/scoped_handle_gtk.h" |
42 #endif | 42 #endif |
43 | 43 |
(...skipping 2008 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2052 | 2052 |
2053 OSExchangeData data; | 2053 OSExchangeData data; |
2054 WriteDragData(press_pt, &data); | 2054 WriteDragData(press_pt, &data); |
2055 | 2055 |
2056 // Message the RootView to do the drag and drop. That way if we're removed | 2056 // Message the RootView to do the drag and drop. That way if we're removed |
2057 // the RootView can detect it and avoid calling us back. | 2057 // the RootView can detect it and avoid calling us back. |
2058 GetWidget()->RunShellDrag(this, data, drag_operations); | 2058 GetWidget()->RunShellDrag(this, data, drag_operations); |
2059 } | 2059 } |
2060 | 2060 |
2061 } // namespace views | 2061 } // namespace views |
OLD | NEW |