Changeset 181860 in webkit
- Timestamp:
- Mar 23, 2015, 12:20:24 PM (11 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
platform/audio/ios/MediaSessionManagerIOS.mm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r181858 r181860 1 2015-03-23 Jer Noble <jer.noble@apple.com> 2 3 [iOS] Accessibility crashing because MediaPlayer is laying out UI off the main thread 4 https://bugs.webkit.org/show_bug.cgi?id=142970 5 6 Reviewed by Eric Carlson. 7 8 Return early after synchronously calling to the main thread to allocate the volume 9 view, to avoid re-allocating the volume view again on the web thread. 10 11 * platform/audio/ios/MediaSessionManagerIOS.mm: 12 (-[WebMediaSessionHelper allocateVolumeView]): 13 1 14 2015-03-23 Tim Horton <timothy_horton@apple.com> 2 15 -
trunk/Source/WebCore/platform/audio/ios/MediaSessionManagerIOS.mm
r181423 r181860 252 252 dispatch_sync(dispatch_get_main_queue(), [strongSelf]() { 253 253 [strongSelf allocateVolumeView]; 254 return;255 254 }); 255 return; 256 256 } 257 257
Note:
See TracChangeset
for help on using the changeset viewer.