Changeset 276741 in webkit


Ignore:
Timestamp:
Apr 28, 2021, 5:17:49 PM (4 years ago)
Author:
Kate Cheney
Message:

Disable App Bound Requests on macOS
https://bugs.webkit.org/show_bug.cgi?id=225155
<rdar://problem/77288787>

App-bound requests is causing potential performance issues on macOS.
We should disable it while we investigate further.

Reviewed by Brent Fulgham.

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

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r276740 r276741  
     12021-04-28  Kate Cheney  <katherine_cheney@apple.com>
     2
     3        Disable App Bound Requests on macOS
     4        https://bugs.webkit.org/show_bug.cgi?id=225155
     5        <rdar://problem/77288787>
     6
     7        App-bound requests is causing potential performance issues on macOS.
     8        We should disable it while we investigate further.
     9
     10        Reviewed by Brent Fulgham.
     11
     12        * wtf/PlatformEnableCocoa.h:
     13
    1142021-04-28  Basuke Suzuki  <basuke.suzuki@sony.com>
    215
  • trunk/Source/WTF/wtf/PlatformEnableCocoa.h

    r276619 r276741  
    668668#endif
    669669
    670 #if !defined(ENABLE_APP_BOUND_REQUESTS) \
    671     && ((PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 120000) \
    672     || ((PLATFORM(IOS_FAMILY) && __IPHONE_OS_VERSION_MIN_REQUIRED >= 150000)))
     670#if !defined(ENABLE_APP_BOUND_REQUESTS) && PLATFORM(IOS_FAMILY) && __IPHONE_OS_VERSION_MIN_REQUIRED >= 150000
    673671#define ENABLE_APP_BOUND_REQUESTS 1
    674672#endif
Note: See TracChangeset for help on using the changeset viewer.