| 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 98b04285fcb22d795e62fbf56591a796e7734f21..a317066563649c5ce3248b119eb68ccc961b3309 100644
|
| --- a/third_party/WebKit/Source/web/WebViewImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebViewImpl.cpp
|
| @@ -3630,11 +3630,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)
|
| {
|
| ASSERT(m_currentDragData);
|
| + m_currentDragData = DataObject::create(webDragData);
|
|
|
| WebAutofillClient* autofillClient = mainFrameImpl() ? mainFrameImpl()->autofillClient() : 0;
|
| UserGestureNotifier notifier(autofillClient, &m_userGestureObserved);
|
|
|