Title: [238383] trunk/Tools
Revision
238383
Author
wenson_hs...@apple.com
Date
2018-11-19 16:26:10 -0800 (Mon, 19 Nov 2018)

Log Message

Unreviewed, fix the internal iOS debug build after r238380

UICalloutBar should only be declared when the public (non-internal) SDK is used to build WebKit; otherwise, we
end up with duplicate declarations of UICalloutBar.

* TestWebKitAPI/ios/UIKitSPI.h:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (238382 => 238383)


--- trunk/Tools/ChangeLog	2018-11-19 23:33:53 UTC (rev 238382)
+++ trunk/Tools/ChangeLog	2018-11-20 00:26:10 UTC (rev 238383)
@@ -1,3 +1,12 @@
+2018-11-19  Wenson Hsieh  <wenson_hs...@apple.com>
+
+        Unreviewed, fix the internal iOS debug build after r238380
+
+        UICalloutBar should only be declared when the public (non-internal) SDK is used to build WebKit; otherwise, we
+        end up with duplicate declarations of UICalloutBar.
+
+        * TestWebKitAPI/ios/UIKitSPI.h:
+
 2018-11-19  David Quesada  <david_ques...@apple.com>
 
         EXC_BAD_ACCESS when invoking a DownloadProxy's destination decision handler after the download has been canceled

Modified: trunk/Tools/TestWebKitAPI/ios/UIKitSPI.h (238382 => 238383)


--- trunk/Tools/TestWebKitAPI/ios/UIKitSPI.h	2018-11-19 23:33:53 UTC (rev 238382)
+++ trunk/Tools/TestWebKitAPI/ios/UIKitSPI.h	2018-11-20 00:26:10 UTC (rev 238383)
@@ -92,6 +92,10 @@
 @interface UIKeyboard : UIView
 @end
 
+@interface UICalloutBar : UIView
++ (UICalloutBar *)sharedCalloutBar;
+@end
+
 #endif
 
 @protocol UITextInputTraits_Private_Proposed_SPI_34583628 <UITextInputPrivate>
@@ -98,10 +102,6 @@
 - (NSDictionary *)_autofillContext;
 @end
 
-@interface UICalloutBar : UIView
-+ (UICalloutBar *)sharedCalloutBar;
-@end
-
 #if ENABLE(DRAG_SUPPORT)
 @protocol UIDragInteractionDelegate_Proposed_SPI_33146803 <UIDragInteractionDelegate>
 - (void)_dragInteraction:(UIDragInteraction *)interaction itemsForAddingToSession:(id <UIDragSession>)session withTouchAtPoint:(CGPoint)point completion:(void(^)(NSArray<UIDragItem *> *))completion;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to