| 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 b8cd9a1a3a0e1098d30747a50eb51dd1a129359d..c91a67aec6c5648a874930fc6d771481264f9315 100644
|
| --- a/third_party/WebKit/Source/web/WebViewImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebViewImpl.cpp
|
| @@ -3710,11 +3710,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);
|
|
|