| 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 21062ae965a51ed773a765f40b9df5f8f5592925..625d58164ab50d2df97cfe09e8052624b8fe0fc9 100644
|
| --- a/third_party/WebKit/Source/web/WebViewImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebViewImpl.cpp
|
| @@ -3726,11 +3726,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);
|
|
|