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

Changeset 245898 in webkit


Ignore:
Timestamp:
May 30, 2019, 12:02:40 PM (7 years ago)
Author:
Keith Rollin
Message:

Fix yet more deprecated uses of -[UIApplication interfaceOrientation]
https://bugs.webkit.org/show_bug.cgi?id=198381
<rdar://problem/51265846>

Reviewed by Wenson Hsieh.

r245267, r245272, and r245874 fixed many instances of this issue; this
change fixes the issue for tvOS.

  • wtf/FeatureDefines.h:
Location:
trunk/Source/WTF
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r245876 r245898  
     12019-05-30  Keith Rollin  <krollin@apple.com>
     2
     3        Fix yet more deprecated uses of -[UIApplication interfaceOrientation]
     4        https://bugs.webkit.org/show_bug.cgi?id=198381
     5        <rdar://problem/51265846>
     6
     7        Reviewed by Wenson Hsieh.
     8
     9        r245267, r245272, and r245874 fixed many instances of this issue; this
     10        change fixes the issue for tvOS.
     11
     12        * wtf/FeatureDefines.h:
     13
    1142019-05-29  David Kilzer  <ddkilzer@apple.com>
    215
  • trunk/Source/WTF/wtf/FeatureDefines.h

    r245874 r245898  
    185185
    186186#if !defined(HAVE_UISCENE)
    187 #if (__IPHONE_OS_VERSION_MIN_REQUIRED >= 130000) || (PLATFORM(WATCHOS) && __WATCH_OS_VERSION_MIN_REQUIRED >= 60000)
     187#if (__IPHONE_OS_VERSION_MIN_REQUIRED >= 130000) || (PLATFORM(APPLETV) && __TV_OS_VERSION_MIN_REQUIRED >= 130000) || (PLATFORM(WATCHOS) && __WATCH_OS_VERSION_MIN_REQUIRED >= 60000)
    188188#define HAVE_UISCENE 1
    189189#endif
Note: See TracChangeset for help on using the changeset viewer.