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

Changeset 245874 in webkit


Ignore:
Timestamp:
May 29, 2019, 4:01:54 PM (7 years ago)
Author:
Keith Rollin
Message:

Followup to r245267 and r245272: fix even more deprecated uses of -[UIApplication interfaceOrientation]
https://bugs.webkit.org/show_bug.cgi?id=198348
<rdar://problem/51234077>

Reviewed by Wenson Hsieh.

r245267 and r245272 fixed many instances of this issue; this change
fixes the issue for watchOS.

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

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

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

    r244441 r245874  
    185185
    186186#if !defined(HAVE_UISCENE)
    187 #if __IPHONE_OS_VERSION_MIN_REQUIRED >= 130000
     187#if (__IPHONE_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.