Title: [203090] trunk/Source/WebKit/win
Revision
203090
Author
[email protected]
Date
2016-07-11 16:05:10 -0700 (Mon, 11 Jul 2016)

Log Message

Build fix.

Unreviewed.

* WebDropSource.cpp:
(generateMouseEvent):

Modified Paths

Diff

Modified: trunk/Source/WebKit/win/ChangeLog (203089 => 203090)


--- trunk/Source/WebKit/win/ChangeLog	2016-07-11 22:51:24 UTC (rev 203089)
+++ trunk/Source/WebKit/win/ChangeLog	2016-07-11 23:05:10 UTC (rev 203090)
@@ -1,5 +1,14 @@
 2016-07-11  Enrica Casucci  <[email protected]>
 
+        Build fix.
+
+        Unreviewed.
+
+        * WebDropSource.cpp:
+        (generateMouseEvent):
+
+2016-07-11  Enrica Casucci  <[email protected]>
+
         Add synthetic click origin to WKNavigationAction.
         https://bugs.webkit.org/show_bug.cgi?id=159584
         rdar://problem/25610422

Modified: trunk/Source/WebKit/win/WebDropSource.cpp (203089 => 203090)


--- trunk/Source/WebKit/win/WebDropSource.cpp	2016-07-11 22:51:24 UTC (rev 203089)
+++ trunk/Source/WebKit/win/WebDropSource.cpp	2016-07-11 23:05:10 UTC (rev 203090)
@@ -101,7 +101,7 @@
     if (SUCCEEDED(webView->viewWindow(&viewWindow)))
         ::ScreenToClient(viewWindow, reinterpret_cast<LPPOINT>(&localpt));
     return PlatformMouseEvent(IntPoint(localpt.x, localpt.y), IntPoint(pt.x, pt.y),
-        isDrag ? LeftButton : NoButton, PlatformEvent::MouseMoved, 0, false, false, false, false, currentTime(), 0, 0);
+        isDrag ? LeftButton : NoButton, PlatformEvent::MouseMoved, 0, false, false, false, false, currentTime(), 0, NoTap);
 }
 
 STDMETHODIMP WebDropSource::QueryContinueDrag(_In_ BOOL fEscapePressed, _In_ DWORD grfKeyState)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to