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

Unified Diff: content/browser/browser_plugin/browser_plugin_guest.cc

Issue 2655463015: Correctly set dragLeave and dragEnd coords for OOPIF drag and drop (Closed)
Patch Set: Cleanup Created 3 years, 11 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: content/browser/browser_plugin/browser_plugin_guest.cc
diff --git a/content/browser/browser_plugin/browser_plugin_guest.cc b/content/browser/browser_plugin/browser_plugin_guest.cc
index 97ea0475fc3176c9aa7a1d99d4152c5005b901cb..627f029094122bba064c9e986c4fce7a08bfebe2 100644
--- a/content/browser/browser_plugin/browser_plugin_guest.cc
+++ b/content/browser/browser_plugin/browser_plugin_guest.cc
@@ -856,7 +856,7 @@ void BrowserPluginGuest::OnDragStatusUpdate(int browser_plugin_instance_id,
break;
case blink::WebDragStatusLeave:
embedder->DragLeftGuest(this);
- widget->DragTargetDragLeave();
+ widget->DragTargetDragLeave(gfx::Point(), gfx::Point());
ignore_dragged_url_ = true;
break;
case blink::WebDragStatusDrop:

Powered by Google App Engine
This is Rietveld 408576698