Index: third_party/WebKit/Source/web/WebViewImpl.cpp |
diff --git a/third_party/WebKit/Source/web/WebViewImpl.cpp b/third_party/WebKit/Source/web/WebViewImpl.cpp |
index e5d845e9d073d7e2c90e9867b6fc09b977ca5a6d..9b671b4e4f76bf75d16f2b0e3428a845050ab7e8 100644 |
--- a/third_party/WebKit/Source/web/WebViewImpl.cpp |
+++ b/third_party/WebKit/Source/web/WebViewImpl.cpp |
@@ -3661,11 +3661,12 @@ void WebViewImpl::dragTargetDragLeave() |
m_currentDragData = nullptr; |
} |
-void WebViewImpl::dragTargetDrop(const WebPoint& clientPoint, |
- const WebPoint& screenPoint, |
- int modifiers) |
+void WebViewImpl::dragTargetDrop(const WebDragData& webDragData, const WebPoint& clientPoint, |
+ const WebPoint& screenPoint, |
+ int modifiers) |
{ |
DCHECK(m_currentDragData); |
+ m_currentDragData = DataObject::create(webDragData); |
WebAutofillClient* autofillClient = mainFrameImpl() ? mainFrameImpl()->autofillClient() : 0; |
UserGestureNotifier notifier(autofillClient, &m_userGestureObserved); |