Changeset 286833 in webkit
- Timestamp:
- Dec 9, 2021, 10:24:31 PM (5 years ago)
- Location:
- trunk/Source/WebKit
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
UIProcess/API/Cocoa/WKWebViewPrivate.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r286832 r286833 1 2021-12-09 Aditya Keerthi <akeerthi@apple.com> 2 3 Fix the tvOS and watchOS builds after r286641 4 https://bugs.webkit.org/show_bug.cgi?id=234124 5 6 Unreviewed build fix. 7 8 * UIProcess/API/Cocoa/WKWebViewPrivate.h: 9 10 WKWebView does not conform to the protocol on watchOS/tvOS. 11 1 12 2021-12-09 Ryan Haddad <ryanhaddad@apple.com> 2 13 -
trunk/Source/WebKit/UIProcess/API/Cocoa/WKWebViewPrivate.h
r286823 r286833 432 432 #if TARGET_OS_IPHONE 433 433 434 #if __has_include(<UIKit/_UITextSearching.h>)434 #if !TARGET_OS_TV && !TARGET_OS_WATCH && __has_include(<UIKit/_UITextSearching.h>) 435 435 @interface WKWebView (WKPrivateIOS) <_UITextSearching> 436 436 #else
Note:
See TracChangeset
for help on using the changeset viewer.