Title: [239049] trunk/Source/WebKit
- Revision
- 239049
- Author
- [email protected]
- Date
- 2018-12-10 13:50:11 -0800 (Mon, 10 Dec 2018)
Log Message
Fix WatchOS build.
* UIProcess/API/Cocoa/WKUIDelegatePrivate.h:
* UIProcess/ios/WKContentViewInteraction.mm:
(-[WKContentView actionNameForFocusedFormControlView:]):
Modified Paths
Diff
Modified: trunk/Source/WebKit/ChangeLog (239048 => 239049)
--- trunk/Source/WebKit/ChangeLog 2018-12-10 21:48:13 UTC (rev 239048)
+++ trunk/Source/WebKit/ChangeLog 2018-12-10 21:50:11 UTC (rev 239049)
@@ -1,3 +1,11 @@
+2018-12-10 Alex Christensen <[email protected]>
+
+ Fix WatchOS build.
+
+ * UIProcess/API/Cocoa/WKUIDelegatePrivate.h:
+ * UIProcess/ios/WKContentViewInteraction.mm:
+ (-[WKContentView actionNameForFocusedFormControlView:]):
+
2018-12-10 Matt Lewis <[email protected]>
Unreviewed, rolling out r239029.
Modified: trunk/Source/WebKit/UIProcess/API/Cocoa/WKUIDelegatePrivate.h (239048 => 239049)
--- trunk/Source/WebKit/UIProcess/API/Cocoa/WKUIDelegatePrivate.h 2018-12-10 21:48:13 UTC (rev 239048)
+++ trunk/Source/WebKit/UIProcess/API/Cocoa/WKUIDelegatePrivate.h 2018-12-10 21:50:11 UTC (rev 239049)
@@ -157,8 +157,8 @@
- (void)_webView:(WKWebView *)webView dataInteraction:(id)interaction session:(id)session didEndWithOperation:(NSUInteger)operation WK_API_AVAILABLE(ios(11.0));
- (void)_webView:(WKWebView *)webView dataInteractionOperationWasHandled:(BOOL)handled forSession:(id)session itemProviders:(NSArray *)itemProviders WK_API_AVAILABLE(ios(11.0));
- (NSUInteger)_webView:(WKWebView *)webView willUpdateDataInteractionOperationToOperation:(NSUInteger)operation forSession:(id)session WK_API_AVAILABLE(ios(11.0));
+#if TARGET_OS_IOS
- (UIDropProposal *)_webView:(WKWebView *)webView willUpdateDropProposalToProposal:(UIDropProposal *)proposal forSession:(id <UIDropSession>)session WK_API_AVAILABLE(ios(WK_IOS_TBA));
-#if TARGET_OS_IOS
- (UITargetedDragPreview *)_webView:(WKWebView *)webView previewForLiftingItem:(UIDragItem *)item session:(id <UIDragSession>)session WK_API_AVAILABLE(ios(11.0));
- (UITargetedDragPreview *)_webView:(WKWebView *)webView previewForCancellingItem:(UIDragItem *)item withDefault:(UITargetedDragPreview *)defaultPreview WK_API_AVAILABLE(ios(11.0));
- (NSArray<UIDragItem *> *)_webView:(WKWebView *)webView willPerformDropWithSession:(id <UIDropSession>)session WK_API_AVAILABLE(ios(11.0));
Modified: trunk/Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm (239048 => 239049)
--- trunk/Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm 2018-12-10 21:48:13 UTC (rev 239048)
+++ trunk/Source/WebKit/UIProcess/ios/WKContentViewInteraction.mm 2018-12-10 21:50:11 UTC (rev 239049)
@@ -4780,9 +4780,9 @@
#endif
return nil;
case InputType::Search:
- return formControlSearchButtonTitle();
+ return WebCore::formControlSearchButtonTitle();
default:
- return formControlGoButtonTitle();
+ return WebCore::formControlGoButtonTitle();
}
}
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes