Title: [239140] trunk/Source/WebKit
Revision
239140
Author
cfleiz...@apple.com
Date
2018-12-12 17:32:58 -0800 (Wed, 12 Dec 2018)

Log Message

[meta][WebKit] Remove using namespace WebCore and WebKit in the global scope for unified source builds
https://bugs.webkit.org/show_bug.cgi?id=192449
<rdar://problem/46595508>

Reviewed by Tim Horton.

Fix iosmac build.

* UIProcess/ios/WKContentViewInteraction.mm:
(-[WKContentView _hoverGestureRecognizerChanged:]):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (239139 => 239140)


--- trunk/Source/WebKit/ChangeLog	2018-12-13 01:26:32 UTC (rev 239139)
+++ trunk/Source/WebKit/ChangeLog	2018-12-13 01:32:58 UTC (rev 239140)
@@ -1,3 +1,16 @@
+2018-12-12  Chris Fleizach  <cfleiz...@apple.com>
+
+        [meta][WebKit] Remove using namespace WebCore and WebKit in the global scope for unified source builds
+        https://bugs.webkit.org/show_bug.cgi?id=192449
+        <rdar://problem/46595508>
+
+        Reviewed by Tim Horton.
+
+        Fix iosmac build.
+
+        * UIProcess/ios/WKContentViewInteraction.mm:
+        (-[WKContentView _hoverGestureRecognizerChanged:]):
+
 2018-12-12  Alex Christensen  <achristen...@webkit.org>
 
         Implement safe browsing in WebKit on WatchOS

Modified: trunk/Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm (239139 => 239140)


--- trunk/Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm	2018-12-13 01:26:32 UTC (rev 239139)
+++ trunk/Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm	2018-12-13 01:32:58 UTC (rev 239140)
@@ -6201,7 +6201,7 @@
     }
 
     auto event = adoptNS([[::WebEvent alloc] initWithMouseEventType:WebEventMouseMoved timeStamp:timestamp location:point]);
-    _page->handleMouseEvent(NativeWebMouseEvent(event.get()));
+    _page->handleMouseEvent(WebKit::NativeWebMouseEvent(event.get()));
 }
 #endif
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to