| Index: third_party/WebKit/Source/web/WebPluginContainerImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebPluginContainerImpl.cpp b/third_party/WebKit/Source/web/WebPluginContainerImpl.cpp
|
| index 99e6289e54bbce2a714e96c539ca762e1345ea33..7de4891bc5c66a991dc00cd59d9698b4c6124ed9 100644
|
| --- a/third_party/WebKit/Source/web/WebPluginContainerImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebPluginContainerImpl.cpp
|
| @@ -753,9 +753,8 @@ void WebPluginContainerImpl::handleDragEvent(MouseEvent* event) {
|
| WebDragOperationsMask dragOperationMask =
|
| static_cast<WebDragOperationsMask>(dataTransfer->sourceOperation());
|
| WebPoint dragScreenLocation(event->screenX(), event->screenY());
|
| - WebPoint dragLocation(
|
| - (event->absoluteLocation().x() - location().x()).toInt(),
|
| - (event->absoluteLocation().y() - location().y()).toInt());
|
| + WebPoint dragLocation(event->absoluteLocation().x() - location().x(),
|
| + event->absoluteLocation().y() - location().y());
|
|
|
| m_webPlugin->handleDragStatusUpdate(dragStatus, dragData, dragOperationMask,
|
| dragLocation, dragScreenLocation);
|
|
|