Changeset 242746 in webkit


Ignore:
Timestamp:
Mar 11, 2019, 3:31:14 PM (6 years ago)
Author:
achristensen@apple.com
Message:

Soft linking to Reveal framework should be optional
https://bugs.webkit.org/show_bug.cgi?id=195576
<rdar://problem/46822452>

Reviewed by Megan Gardner.

Source/WebCore:

Systems exist with ENABLE(REVEAL) true and the Reveal framework does not exist.

  • editing/cocoa/DictionaryLookup.mm:

(WebCore::showPopupOrCreateAnimationController):

Source/WebCore/PAL:

  • pal/spi/cocoa/RevealSPI.h:
Location:
trunk/Source/WebCore
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r242742 r242746  
     12019-03-11  Alex Christensen  <achristensen@webkit.org>
     2
     3        Soft linking to Reveal framework should be optional
     4        https://bugs.webkit.org/show_bug.cgi?id=195576
     5        <rdar://problem/46822452>
     6
     7        Reviewed by Megan Gardner.
     8
     9        Systems exist with ENABLE(REVEAL) true and the Reveal framework does not exist.
     10
     11        * editing/cocoa/DictionaryLookup.mm:
     12        (WebCore::showPopupOrCreateAnimationController):
     13
    1142019-03-11  Yusuke Suzuki  <ysuzuki@apple.com>
    215
  • trunk/Source/WebCore/PAL/ChangeLog

    r242616 r242746  
     12019-03-11  Alex Christensen  <achristensen@webkit.org>
     2
     3        Soft linking to Reveal framework should be optional
     4        https://bugs.webkit.org/show_bug.cgi?id=195576
     5        <rdar://problem/46822452>
     6
     7        Reviewed by Megan Gardner.
     8
     9        * pal/spi/cocoa/RevealSPI.h:
     10
    1112019-03-07  Andy Estes  <aestes@apple.com>
    212
  • trunk/Source/WebCore/PAL/pal/spi/cocoa/RevealSPI.h

    r240021 r242746  
    2929#endif // PLATFORM(MAC)
    3030#import <wtf/SoftLinking.h>
    31 
    32 SOFT_LINK_PRIVATE_FRAMEWORK(Reveal)
    33 SOFT_LINK_PRIVATE_FRAMEWORK(RevealCore)
    34 SOFT_LINK_CLASS_OPTIONAL(Reveal, RVPresenter)
    35 SOFT_LINK_CLASS_OPTIONAL(Reveal, RVPresentingContext)
    36 SOFT_LINK_CLASS_OPTIONAL(RevealCore, RVItem)
    37 SOFT_LINK_CLASS_OPTIONAL(RevealCore, RVSelection)
    3831
    3932#if ENABLE(REVEAL)
  • trunk/Source/WebCore/editing/cocoa/DictionaryLookup.mm

    r240556 r242746  
    6969#endif // PLATFORM(IOSMAC)
    7070
     71#if ENABLE(REVEAL)
     72SOFT_LINK_PRIVATE_FRAMEWORK_OPTIONAL(Reveal)
     73SOFT_LINK_PRIVATE_FRAMEWORK_OPTIONAL(RevealCore)
     74SOFT_LINK_CLASS_OPTIONAL(Reveal, RVPresenter)
     75SOFT_LINK_CLASS_OPTIONAL(Reveal, RVPresentingContext)
     76SOFT_LINK_CLASS_OPTIONAL(RevealCore, RVItem)
     77SOFT_LINK_CLASS_OPTIONAL(RevealCore, RVSelection)
     78#endif
     79
    7180#if PLATFORM(MAC)
    7281
     
    267276    BEGIN_BLOCK_OBJC_EXCEPTIONS;
    268277   
    269     if (!getRVItemClass())
     278    if (!RevealLibrary() || !RevealCoreLibrary() || !getRVItemClass())
    270279        return { nullptr, nil };
    271280   
     
    302311    BEGIN_BLOCK_OBJC_EXCEPTIONS;
    303312   
    304     if (!getRVItemClass())
     313    if (!RevealLibrary() || !RevealCoreLibrary() || !getRVItemClass())
    305314        return { nullptr, nil };
    306315   
     
    393402    BEGIN_BLOCK_OBJC_EXCEPTIONS;
    394403   
    395     if (!getRVItemClass())
     404    if (!RevealLibrary() || !RevealCoreLibrary() || !getRVItemClass())
    396405        return { nullptr, nil };
    397406
     
    437446#if PLATFORM(MAC)
    438447   
    439     if (!getRVItemClass() || !getRVPresenterClass())
     448    if (!RevealLibrary() || !RevealCoreLibrary() || !getRVItemClass() || !getRVPresenterClass())
    440449        return nil;
    441450
Note: See TracChangeset for help on using the changeset viewer.