Title: [218453] trunk/Source/WebKit2
Revision
218453
Author
[email protected]
Date
2017-06-17 08:49:32 -0700 (Sat, 17 Jun 2017)

Log Message

Tried to fix non-iOS builds.

* UIProcess/API/Cocoa/WKUIDelegatePrivate.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (218452 => 218453)


--- trunk/Source/WebKit2/ChangeLog	2017-06-17 14:13:13 UTC (rev 218452)
+++ trunk/Source/WebKit2/ChangeLog	2017-06-17 15:49:32 UTC (rev 218453)
@@ -1,3 +1,9 @@
+2017-06-17  Dan Bernstein  <[email protected]>
+
+        Tried to fix non-iOS builds.
+
+        * UIProcess/API/Cocoa/WKUIDelegatePrivate.h:
+
 2017-06-17  Carlos Garcia Campos  <[email protected]>
 
         [GTK] Rename WebContextMenuItemGtk as WebContextMenuItemGlib

Modified: trunk/Source/WebKit2/UIProcess/API/Cocoa/WKUIDelegatePrivate.h (218452 => 218453)


--- trunk/Source/WebKit2/UIProcess/API/Cocoa/WKUIDelegatePrivate.h	2017-06-17 14:13:13 UTC (rev 218452)
+++ trunk/Source/WebKit2/UIProcess/API/Cocoa/WKUIDelegatePrivate.h	2017-06-17 15:49:32 UTC (rev 218453)
@@ -40,7 +40,7 @@
 @class _WKElementAction;
 @class _WKFrameHandle;
 
-#if TARGET_OS_IPHONE
+#if TARGET_OS_IOS
 @class UIDragItem;
 @class UITargetedDragPreview;
 @protocol UIDragSession;
@@ -110,7 +110,7 @@
 - (void)_webView:(WKWebView *)webView dataInteraction:(id)interaction session:(id)session didEndWithOperation:(NSUInteger)operation WK_API_AVAILABLE(ios(WK_IOS_TBA));
 - (void)_webView:(WKWebView *)webView dataInteractionOperationWasHandled:(BOOL)handled forSession:(id)session itemProviders:(NSArray *)itemProviders WK_API_AVAILABLE(ios(WK_IOS_TBA));
 - (NSUInteger)_webView:(WKWebView *)webView willUpdateDataInteractionOperationToOperation:(NSUInteger)operation forSession:(id)session WK_API_AVAILABLE(ios(WK_IOS_TBA));
-#if TARGET_OS_IPHONE
+#if TARGET_OS_IOS
 - (UITargetedDragPreview *)_webView:(WKWebView *)webView previewForLiftingItem:(UIDragItem *)item session:(id <UIDragSession>)session WK_API_AVAILABLE(ios(WK_IOS_TBA));
 - (UITargetedDragPreview *)_webView:(WKWebView *)webView previewForCancellingItem:(UIDragItem *)item withDefault:(UITargetedDragPreview *)defaultPreview WK_API_AVAILABLE(ios(WK_IOS_TBA));
 - (NSArray<UIDragItem *> *)_webView:(WKWebView *)webView willPerformDropWithSession:(id <UIDropSession>)session WK_API_AVAILABLE(ios(WK_IOS_TBA));
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to