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 #define _USE_MATH_DEFINES // For VC++ to get M_PI. This has to be first. | 5 #define _USE_MATH_DEFINES // For VC++ to get M_PI. This has to be first. |
6 | 6 |
7 #include "ui/views/view.h" | 7 #include "ui/views/view.h" |
8 | 8 |
9 #include <algorithm> | 9 #include <algorithm> |
10 #include <cmath> | 10 #include <cmath> |
11 | 11 |
12 #include "base/debug/trace_event.h" | |
13 #include "base/logging.h" | 12 #include "base/logging.h" |
14 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
15 #include "base/message_loop/message_loop.h" | 14 #include "base/message_loop/message_loop.h" |
16 #include "base/strings/stringprintf.h" | 15 #include "base/strings/stringprintf.h" |
17 #include "base/strings/utf_string_conversions.h" | 16 #include "base/strings/utf_string_conversions.h" |
| 17 #include "base/trace_event/trace_event.h" |
18 #include "third_party/skia/include/core/SkRect.h" | 18 #include "third_party/skia/include/core/SkRect.h" |
19 #include "ui/accessibility/ax_enums.h" | 19 #include "ui/accessibility/ax_enums.h" |
20 #include "ui/base/cursor/cursor.h" | 20 #include "ui/base/cursor/cursor.h" |
21 #include "ui/base/dragdrop/drag_drop_types.h" | 21 #include "ui/base/dragdrop/drag_drop_types.h" |
22 #include "ui/compositor/compositor.h" | 22 #include "ui/compositor/compositor.h" |
23 #include "ui/compositor/dip_util.h" | 23 #include "ui/compositor/dip_util.h" |
24 #include "ui/compositor/layer.h" | 24 #include "ui/compositor/layer.h" |
25 #include "ui/compositor/layer_animator.h" | 25 #include "ui/compositor/layer_animator.h" |
26 #include "ui/events/event_target_iterator.h" | 26 #include "ui/events/event_target_iterator.h" |
27 #include "ui/gfx/canvas.h" | 27 #include "ui/gfx/canvas.h" |
(...skipping 2445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2473 // Message the RootView to do the drag and drop. That way if we're removed | 2473 // Message the RootView to do the drag and drop. That way if we're removed |
2474 // the RootView can detect it and avoid calling us back. | 2474 // the RootView can detect it and avoid calling us back. |
2475 gfx::Point widget_location(event.location()); | 2475 gfx::Point widget_location(event.location()); |
2476 ConvertPointToWidget(this, &widget_location); | 2476 ConvertPointToWidget(this, &widget_location); |
2477 widget->RunShellDrag(this, data, widget_location, drag_operations, source); | 2477 widget->RunShellDrag(this, data, widget_location, drag_operations, source); |
2478 // WARNING: we may have been deleted. | 2478 // WARNING: we may have been deleted. |
2479 return true; | 2479 return true; |
2480 } | 2480 } |
2481 | 2481 |
2482 } // namespace views | 2482 } // namespace views |
OLD | NEW |