Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(315)

Unified Diff: ui/aura/root_window.cc

Issue 10855159: Support Drag and Drop across displays. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Disable DragDropTrackerTest on Win Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ui/aura/root_window.cc
diff --git a/ui/aura/root_window.cc b/ui/aura/root_window.cc
index d274b86f8efdf0240f2e8395924a6f9fc2ad76d2..5430d5a3ddcdf67dd365501abce52904c722a8e4 100644
--- a/ui/aura/root_window.cc
+++ b/ui/aura/root_window.cc
@@ -1019,7 +1019,7 @@ bool RootWindow::DispatchMouseEventToTarget(ui::MouseEvent* event,
default:
break;
}
- if (target && target->delegate()) {
+ if (target) {
int flags = event->flags();
gfx::Point location_in_window = event->location();
Window::ConvertPointToTarget(this, target, &location_in_window);

Powered by Google App Engine
This is Rietveld 408576698