Changeset 260907 in webkit


Ignore:
Timestamp:
Apr 29, 2020 11:53:44 AM (4 years ago)
Author:
jer.noble@apple.com
Message:

[Mac] Adopt kMTSupportNotification_ShouldPlayHDRVideoChanged notification
https://bugs.webkit.org/show_bug.cgi?id=211028
<rdar://problem/61173289>

Reviewed by Aakash Jain.

Follow-up test failure fix; correct the debug/non-debug variants of SOFT_LINK_FRAMEWORK_FOR_SOURCE_WITH_EXPORT.

  • wtf/win/SoftLinking.h:
Location:
trunk/Source/WTF
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r260888 r260907  
     12020-04-29  Jer Noble  <jer.noble@apple.com>
     2
     3        [Mac] Adopt kMTSupportNotification_ShouldPlayHDRVideoChanged notification
     4        https://bugs.webkit.org/show_bug.cgi?id=211028
     5        <rdar://problem/61173289>
     6
     7        Reviewed by Aakash Jain.
     8
     9        Follow-up test failure fix; correct the debug/non-debug variants of SOFT_LINK_FRAMEWORK_FOR_SOURCE_WITH_EXPORT.
     10
     11        * wtf/win/SoftLinking.h:
     12
    1132020-04-29  Commit Queue  <commit-queue@webkit.org>
    214
  • trunk/Source/WTF/wtf/win/SoftLinking.h

    r260832 r260907  
    184184#ifdef DEBUG_ALL
    185185#define SOFT_LINK_FRAMEWORK_FOR_SOURCE(functionNamespace, framework) SOFT_LINK_DEBUG_FRAMEWORK(functionNamespace, framework)
    186 #define SOFT_LINK_FRAMEWORK_FOR_SOURCE_WITH_EXPORT(functionNamespace, framework, export) SOFT_LINK_DEBUG_FRAMEWORK_HELPER(functionNamespace, framework, L".dll", export)
     186#define SOFT_LINK_FRAMEWORK_FOR_SOURCE_WITH_EXPORT(functionNamespace, framework, export) SOFT_LINK_FRAMEWORK_HELPER(functionNamespace, framework, L"_debug.dll", export)
    187187#else
    188188#define SOFT_LINK_FRAMEWORK_FOR_SOURCE(functionNamespace, framework) SOFT_LINK_FRAMEWORK(functionNamespace, framework)
    189 #define SOFT_LINK_FRAMEWORK_FOR_SOURCE_WITH_EXPORT(functionNamespace, framework, export) SOFT_LINK_FRAMEWORK_HELPER(functionNamespace, framework, L"_debug.dll", export)
     189#define SOFT_LINK_FRAMEWORK_FOR_SOURCE_WITH_EXPORT(functionNamespace, framework, export) SOFT_LINK_FRAMEWORK_HELPER(functionNamespace, framework, L".dll", export)
    190190#endif
    191191
Note: See TracChangeset for help on using the changeset viewer.