Changeset 279855 in webkit
- Timestamp:
- Jul 12, 2021, 4:07:14 PM (5 years ago)
- Location:
- trunk/Source
- Files:
-
- 5 edited
-
WTF/ChangeLog (modified) (1 diff)
-
WTF/wtf/PlatformHave.h (modified) (1 diff)
-
WebKit/ChangeLog (modified) (1 diff)
-
WebKit/PluginProcess/mac/com.apple.WebKit.plugin-common.sb.in (modified) (1 diff)
-
WebKit/UIProcess/Cocoa/PreferenceObserver.mm (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WTF/ChangeLog
r279847 r279855 1 2021-07-12 Chris Fleizach <cfleizach@apple.com> 2 3 AX: Make WebKit observe spatial audio accessibility settings 4 https://bugs.webkit.org/show_bug.cgi?id=227848 5 6 Reviewed by Sam Weinig. 7 8 This flag was using the wrong format for a HAVE setting, so the code wasn't being compiled in. 9 10 * wtf/PlatformHave.h: 11 1 12 2021-07-12 Simon Fraser <simon.fraser@apple.com> 2 13 -
trunk/Source/WTF/wtf/PlatformHave.h
r279786 r279855 1041 1041 #if (((PLATFORM(IOS) || PLATFORM(MACCATALYST)) && __IPHONE_OS_VERSION_MIN_REQUIRED >= 150000) \ 1042 1042 || (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 120000)) 1043 #define UPDATE_WEB_ACCESSIBILITY_SETTINGS 11043 #define HAVE_UPDATE_WEB_ACCESSIBILITY_SETTINGS 1 1044 1044 #endif 1045 1045 -
trunk/Source/WebKit/ChangeLog
r279840 r279855 1 2021-07-12 Chris Fleizach <cfleizach@apple.com> 2 3 AX: Make WebKit observe spatial audio accessibility settings 4 https://bugs.webkit.org/show_bug.cgi?id=227848 5 6 Reviewed by Sam Weinig. 7 8 Allow mac and iOS to read from accessibility domains. 9 Allow mac sandbox to read from com.apple.Accessibility. 10 11 * PluginProcess/mac/com.apple.WebKit.plugin-common.sb.in: 12 * UIProcess/Cocoa/PreferenceObserver.mm: 13 (-[WKPreferenceObserver init]): 14 1 15 2021-07-12 Chris Dumez <cdumez@apple.com> 2 16 -
trunk/Source/WebKit/PluginProcess/mac/com.apple.WebKit.plugin-common.sb.in
r279145 r279855 262 262 ".GlobalPreferences" 263 263 "com.apple.ATS" 264 "com.apple.Accessibility" 264 265 "com.apple.Bluetooth" 265 266 "com.apple.CoreGraphics" -
trunk/Source/WebKit/UIProcess/Cocoa/PreferenceObserver.mm
r279354 r279855 130 130 131 131 std::initializer_list<NSString*> domains = { 132 @"com.apple.Accessibility", 133 @"com.apple.mediaaccessibility", 132 134 #if PLATFORM(IOS_FAMILY) 133 @"com.apple.Accessibility",134 135 @"com.apple.AdLib", 135 136 @"com.apple.SpeakSelection", … … 150 151 @"com.apple.driver.AppleBluetoothMultitouch.mouse", 151 152 @"com.apple.driver.AppleBluetoothMultitouch.trackpad", 152 @"com.apple.mediaaccessibility",153 153 @"com.apple.speech.voice.prefs", 154 154 @"com.apple.universalaccess",
Note:
See TracChangeset
for help on using the changeset viewer.