Changeset 276741 in webkit
- Timestamp:
- Apr 28, 2021, 5:17:49 PM (4 years ago)
- Location:
- trunk/Source/WTF
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WTF/ChangeLog
r276740 r276741 1 2021-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 1 14 2021-04-28 Basuke Suzuki <basuke.suzuki@sony.com> 2 15 -
trunk/Source/WTF/wtf/PlatformEnableCocoa.h
r276619 r276741 668 668 #endif 669 669 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 673 671 #define ENABLE_APP_BOUND_REQUESTS 1 674 672 #endif
Note:
See TracChangeset
for help on using the changeset viewer.