summaryrefslogtreecommitdiff
path: root/Source/WebKit/chromium/src/DragClientImpl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebKit/chromium/src/DragClientImpl.cpp')
-rw-r--r--Source/WebKit/chromium/src/DragClientImpl.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/Source/WebKit/chromium/src/DragClientImpl.cpp b/Source/WebKit/chromium/src/DragClientImpl.cpp
index afa570611..a6fb0bd33 100644
--- a/Source/WebKit/chromium/src/DragClientImpl.cpp
+++ b/Source/WebKit/chromium/src/DragClientImpl.cpp
@@ -87,10 +87,7 @@ void DragClientImpl::startDrag(DragImageRef dragImage,
IntSize offsetSize(eventPos - dragImageOrigin);
WebPoint offsetPoint(offsetSize.width(), offsetSize.height());
- m_webView->startDragging(
- dragData, static_cast<WebDragOperationsMask>(dragOperationMask),
- dragImage ? WebImage(*dragImage) : WebImage(),
- offsetPoint);
+ m_webView->startDragging(frame, dragData, static_cast<WebDragOperationsMask>(dragOperationMask), dragImage ? WebImage(*dragImage) : WebImage(), offsetPoint);
}
void DragClientImpl::dragControllerDestroyed()