| 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 #include "ui/views/view.h" | 5 #include "ui/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 20 matching lines...) Expand all Loading... |
| 31 #include "ui/views/widget/native_widget_private.h" | 31 #include "ui/views/widget/native_widget_private.h" |
| 32 #include "ui/views/widget/root_view.h" | 32 #include "ui/views/widget/root_view.h" |
| 33 #include "ui/views/widget/tooltip_manager.h" | 33 #include "ui/views/widget/tooltip_manager.h" |
| 34 #include "ui/views/widget/widget.h" | 34 #include "ui/views/widget/widget.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_region.h" |
| 42 #endif | 42 #endif |
| 43 | 43 |
| 44 namespace { | 44 namespace { |
| 45 | 45 |
| 46 // Whether to use accelerated compositing when necessary (e.g. when a view has a | 46 // Whether to use accelerated compositing when necessary (e.g. when a view has a |
| 47 // transformation). | 47 // transformation). |
| 48 #if defined(USE_AURA) | 48 #if defined(USE_AURA) |
| 49 bool use_acceleration_when_possible = true; | 49 bool use_acceleration_when_possible = true; |
| 50 #else | 50 #else |
| 51 bool use_acceleration_when_possible = false; | 51 bool use_acceleration_when_possible = false; |
| (...skipping 2019 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2071 | 2071 |
| 2072 // Message the RootView to do the drag and drop. That way if we're removed | 2072 // Message the RootView to do the drag and drop. That way if we're removed |
| 2073 // the RootView can detect it and avoid calling us back. | 2073 // the RootView can detect it and avoid calling us back. |
| 2074 gfx::Point widget_location(event.location()); | 2074 gfx::Point widget_location(event.location()); |
| 2075 ConvertPointToWidget(this, &widget_location); | 2075 ConvertPointToWidget(this, &widget_location); |
| 2076 GetWidget()->RunShellDrag(this, data, widget_location, drag_operations); | 2076 GetWidget()->RunShellDrag(this, data, widget_location, drag_operations); |
| 2077 #endif // !defined(OS_MACOSX) | 2077 #endif // !defined(OS_MACOSX) |
| 2078 } | 2078 } |
| 2079 | 2079 |
| 2080 } // namespace views | 2080 } // namespace views |
| OLD | NEW |