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" |
(...skipping 18 matching lines...) Expand all Loading... |
29 #include "views/layout/layout_manager.h" | 29 #include "views/layout/layout_manager.h" |
30 #include "views/views_delegate.h" | 30 #include "views/views_delegate.h" |
31 #include "views/widget/native_widget_private.h" | 31 #include "views/widget/native_widget_private.h" |
32 #include "views/widget/native_widget_views.h" | 32 #include "views/widget/native_widget_views.h" |
33 #include "views/widget/root_view.h" | 33 #include "views/widget/root_view.h" |
34 #include "views/widget/tooltip_manager.h" | 34 #include "views/widget/tooltip_manager.h" |
35 #include "views/widget/widget.h" | 35 #include "views/widget/widget.h" |
36 | 36 |
37 #if defined(OS_WIN) | 37 #if defined(OS_WIN) |
38 #include "base/win/scoped_gdi_object.h" | 38 #include "base/win/scoped_gdi_object.h" |
39 #include "views/accessibility/native_view_accessibility_win.h" | 39 #include "ui/views/accessibility/native_view_accessibility_win.h" |
40 #endif | 40 #endif |
41 #if defined(TOOLKIT_USES_GTK) | 41 #if defined(TOOLKIT_USES_GTK) |
42 #include "ui/base/gtk/scoped_handle_gtk.h" | 42 #include "ui/base/gtk/scoped_handle_gtk.h" |
43 #endif | 43 #endif |
44 | 44 |
45 namespace { | 45 namespace { |
46 | 46 |
47 // Whether to use accelerated compositing when necessary (e.g. when a view has a | 47 // Whether to use accelerated compositing when necessary (e.g. when a view has a |
48 // transformation). | 48 // transformation). |
49 #if defined(VIEWS_COMPOSITOR) | 49 #if defined(VIEWS_COMPOSITOR) |
(...skipping 2017 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2067 | 2067 |
2068 OSExchangeData data; | 2068 OSExchangeData data; |
2069 WriteDragData(press_pt, &data); | 2069 WriteDragData(press_pt, &data); |
2070 | 2070 |
2071 // Message the RootView to do the drag and drop. That way if we're removed | 2071 // Message the RootView to do the drag and drop. That way if we're removed |
2072 // the RootView can detect it and avoid calling us back. | 2072 // the RootView can detect it and avoid calling us back. |
2073 GetWidget()->RunShellDrag(this, data, drag_operations); | 2073 GetWidget()->RunShellDrag(this, data, drag_operations); |
2074 } | 2074 } |
2075 | 2075 |
2076 } // namespace views | 2076 } // namespace views |
OLD | NEW |