| 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 830df41c99311a668cbe970767ff86a85e23982c..8ed2a1176135a947df64be74e23b6a8213b31a54 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);
|
|
|