Changeset 258629 in webkit


Ignore:
Timestamp:
Mar 18, 2020 7:24:19 AM (4 years ago)
Author:
youenn@apple.com
Message:

REGRESSION (r257472): Can't start old Safari with new WebKit (dyld: Symbol not found: _WKContextConfigurationSetShouldCaptureAudioInUIProcess)
https://bugs.webkit.org/show_bug.cgi?id=209155

Reviewed by Eric Carlson.

Add a no-op WKContextConfigurationSetShouldCaptureAudioInUIProcess to allow latest WebKit being run on older Safari.

  • UIProcess/API/C/WKContextConfigurationRef.cpp:

(WKContextConfigurationSetShouldCaptureAudioInUIProcess):

  • UIProcess/API/C/WKContextConfigurationRef.h:
Location:
trunk/Source/WebKit
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r258628 r258629  
     12020-03-18  youenn fablet  <youenn@apple.com>
     2
     3        REGRESSION (r257472): Can't start old Safari with new WebKit (dyld: Symbol not found: _WKContextConfigurationSetShouldCaptureAudioInUIProcess)
     4        https://bugs.webkit.org/show_bug.cgi?id=209155
     5
     6        Reviewed by Eric Carlson.
     7
     8        Add a no-op WKContextConfigurationSetShouldCaptureAudioInUIProcess to allow latest WebKit being run on older Safari.
     9
     10        * UIProcess/API/C/WKContextConfigurationRef.cpp:
     11        (WKContextConfigurationSetShouldCaptureAudioInUIProcess):
     12        * UIProcess/API/C/WKContextConfigurationRef.h:
     13
    1142020-03-18  youenn fablet  <youenn@apple.com>
    215
  • trunk/Source/WebKit/UIProcess/API/C/WKContextConfigurationRef.cpp

    r257472 r258629  
    215215}
    216216
     217void WKContextConfigurationSetShouldCaptureAudioInUIProcess(WKContextConfigurationRef, bool)
     218{
     219}
     220
    217221void WKContextConfigurationSetShouldConfigureJSCForTesting(WKContextConfigurationRef configuration, bool value)
    218222{
  • trunk/Source/WebKit/UIProcess/API/C/WKContextConfigurationRef.h

    r257472 r258629  
    7373WK_EXPORT void WKContextConfigurationSetOverrideLanguages(WKContextConfigurationRef configuration, WKArrayRef overrideLanguages);
    7474
     75// FIXME: https://bugs.webkit.org/show_bug.cgi?id=209155. Remove this function once no longer useful to run latest WebKit with older Safari.
     76WK_EXPORT void WKContextConfigurationSetShouldCaptureAudioInUIProcess(WKContextConfigurationRef configuration, bool allowed);
     77
    7578WK_EXPORT bool WKContextConfigurationProcessSwapsOnNavigation(WKContextConfigurationRef configuration);
    7679WK_EXPORT void WKContextConfigurationSetProcessSwapsOnNavigation(WKContextConfigurationRef configuration, bool swaps);
Note: See TracChangeset for help on using the changeset viewer.