⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 286833 in webkit


Ignore:
Timestamp:
Dec 9, 2021, 10:24:31 PM (5 years ago)
Author:
Aditya Keerthi
Message:

Fix the tvOS and watchOS builds after r286641
https://bugs.webkit.org/show_bug.cgi?id=234124

Unreviewed build fix.

  • UIProcess/API/Cocoa/WKWebViewPrivate.h:

WKWebView does not conform to the protocol on watchOS/tvOS.

Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r286832 r286833  
     12021-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
    1122021-12-09  Ryan Haddad  <ryanhaddad@apple.com>
    213
  • trunk/Source/WebKit/UIProcess/API/Cocoa/WKWebViewPrivate.h

    r286823 r286833  
    432432#if TARGET_OS_IPHONE
    433433
    434 #if __has_include(<UIKit/_UITextSearching.h>)
     434#if !TARGET_OS_TV && !TARGET_OS_WATCH && __has_include(<UIKit/_UITextSearching.h>)
    435435@interface WKWebView (WKPrivateIOS) <_UITextSearching>
    436436#else
Note: See TracChangeset for help on using the changeset viewer.