Changeset 242746 in webkit
- Timestamp:
- Mar 11, 2019, 3:31:14 PM (6 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r242742 r242746 1 2019-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 1 14 2019-03-11 Yusuke Suzuki <ysuzuki@apple.com> 2 15 -
trunk/Source/WebCore/PAL/ChangeLog
r242616 r242746 1 2019-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 1 11 2019-03-07 Andy Estes <aestes@apple.com> 2 12 -
trunk/Source/WebCore/PAL/pal/spi/cocoa/RevealSPI.h
r240021 r242746 29 29 #endif // PLATFORM(MAC) 30 30 #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)38 31 39 32 #if ENABLE(REVEAL) -
trunk/Source/WebCore/editing/cocoa/DictionaryLookup.mm
r240556 r242746 69 69 #endif // PLATFORM(IOSMAC) 70 70 71 #if ENABLE(REVEAL) 72 SOFT_LINK_PRIVATE_FRAMEWORK_OPTIONAL(Reveal) 73 SOFT_LINK_PRIVATE_FRAMEWORK_OPTIONAL(RevealCore) 74 SOFT_LINK_CLASS_OPTIONAL(Reveal, RVPresenter) 75 SOFT_LINK_CLASS_OPTIONAL(Reveal, RVPresentingContext) 76 SOFT_LINK_CLASS_OPTIONAL(RevealCore, RVItem) 77 SOFT_LINK_CLASS_OPTIONAL(RevealCore, RVSelection) 78 #endif 79 71 80 #if PLATFORM(MAC) 72 81 … … 267 276 BEGIN_BLOCK_OBJC_EXCEPTIONS; 268 277 269 if (! getRVItemClass())278 if (!RevealLibrary() || !RevealCoreLibrary() || !getRVItemClass()) 270 279 return { nullptr, nil }; 271 280 … … 302 311 BEGIN_BLOCK_OBJC_EXCEPTIONS; 303 312 304 if (! getRVItemClass())313 if (!RevealLibrary() || !RevealCoreLibrary() || !getRVItemClass()) 305 314 return { nullptr, nil }; 306 315 … … 393 402 BEGIN_BLOCK_OBJC_EXCEPTIONS; 394 403 395 if (! getRVItemClass())404 if (!RevealLibrary() || !RevealCoreLibrary() || !getRVItemClass()) 396 405 return { nullptr, nil }; 397 406 … … 437 446 #if PLATFORM(MAC) 438 447 439 if (! getRVItemClass() || !getRVPresenterClass())448 if (!RevealLibrary() || !RevealCoreLibrary() || !getRVItemClass() || !getRVPresenterClass()) 440 449 return nil; 441 450
Note:
See TracChangeset
for help on using the changeset viewer.