Changeset 181207 in webkit


Ignore:
Timestamp:
Mar 7, 2015 9:34:38 AM (9 years ago)
Author:
ddkilzer@apple.com
Message:

Rename SOFT_LINK_FRAMEWORK_{HEADER,SOURCE} to SOFT_LINK_FRAMEWORK_FOR_{HEADER,SOURCE}
<http://webkit.org/b/142434>

Reviewed by Darin Adler.

  • platform/cf/CoreMediaSoftLink.cpp:
  • platform/cf/CoreMediaSoftLink.h:
  • platform/cf/MediaAccessibilitySoftLink.cpp:
  • platform/cf/MediaAccessibilitySoftLink.h:
  • platform/mac/SoftLinking.h:
  • platform/win/SoftLinking.h:
  • Do the rename.
Location:
trunk/Source/WebCore
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r181201 r181207  
     12015-03-07  David Kilzer  <ddkilzer@apple.com>
     2
     3        Rename SOFT_LINK_FRAMEWORK_{HEADER,SOURCE} to SOFT_LINK_FRAMEWORK_FOR_{HEADER,SOURCE}
     4        <http://webkit.org/b/142434>
     5
     6        Reviewed by Darin Adler.
     7
     8        * platform/cf/CoreMediaSoftLink.cpp:
     9        * platform/cf/CoreMediaSoftLink.h:
     10        * platform/cf/MediaAccessibilitySoftLink.cpp:
     11        * platform/cf/MediaAccessibilitySoftLink.h:
     12        * platform/mac/SoftLinking.h:
     13        * platform/win/SoftLinking.h:
     14        - Do the rename.
     15
    1162015-03-06  Sam Weinig  <sam@webkit.org>
    217
  • trunk/Source/WebCore/platform/cf/CoreMediaSoftLink.cpp

    r181142 r181207  
    3131#include "SoftLinking.h"
    3232
    33 SOFT_LINK_FRAMEWORK_SOURCE(WebCore, CoreMedia)
     33SOFT_LINK_FRAMEWORK_FOR_SOURCE(WebCore, CoreMedia)
    3434
    3535SOFT_LINK_FUNCTION_FOR_SOURCE(WebCore, CoreMedia, CMBlockBufferCopyDataBytes, OSStatus, (CMBlockBufferRef theSourceBuffer, size_t offsetToData, size_t dataLength, void* destination), (theSourceBuffer, offsetToData, dataLength, destination))
  • trunk/Source/WebCore/platform/cf/CoreMediaSoftLink.h

    r181142 r181207  
    3232#include "SoftLinking.h"
    3333
    34 SOFT_LINK_FRAMEWORK_HEADER(WebCore, CoreMedia)
     34SOFT_LINK_FRAMEWORK_FOR_HEADER(WebCore, CoreMedia)
    3535
    3636SOFT_LINK_FUNCTION_FOR_HEADER(WebCore, CoreMedia, CMBlockBufferCopyDataBytes, OSStatus, (CMBlockBufferRef theSourceBuffer, size_t offsetToData, size_t dataLength, void* destination), (theSourceBuffer, offsetToData, dataLength, destination))
  • trunk/Source/WebCore/platform/cf/MediaAccessibilitySoftLink.cpp

    r181190 r181207  
    3131#include <MediaAccessibility/MediaAccessibility.h>
    3232
    33 SOFT_LINK_FRAMEWORK_SOURCE(WebCore, MediaAccessibility)
     33SOFT_LINK_FRAMEWORK_FOR_SOURCE(WebCore, MediaAccessibility)
    3434
    3535SOFT_LINK_FUNCTION_FOR_SOURCE(WebCore, MediaAccessibility, MACaptionAppearanceGetDisplayType, MACaptionAppearanceDisplayType, (MACaptionAppearanceDomain domain), (domain))
  • trunk/Source/WebCore/platform/cf/MediaAccessibilitySoftLink.h

    r181190 r181207  
    3232#include <MediaAccessibility/MediaAccessibility.h>
    3333
    34 SOFT_LINK_FRAMEWORK_HEADER(WebCore, MediaAccessibility)
     34SOFT_LINK_FRAMEWORK_FOR_HEADER(WebCore, MediaAccessibility)
    3535
    3636SOFT_LINK_FUNCTION_FOR_HEADER(WebCore, MediaAccessibility, MACaptionAppearanceGetDisplayType, MACaptionAppearanceDisplayType, (MACaptionAppearanceDomain domain), (domain))
  • trunk/Source/WebCore/platform/mac/SoftLinking.h

    r181142 r181207  
    294294// See Source/WebCore/platform/cf/CoreMediaSoftLink.{cpp,h} for an example implementation.
    295295
    296 #define SOFT_LINK_FRAMEWORK_HEADER(functionNamespace, framework) \
     296#define SOFT_LINK_FRAMEWORK_FOR_HEADER(functionNamespace, framework) \
    297297    namespace functionNamespace { \
    298298    extern void* framework##Library(bool isOptional = false); \
     
    303303    }
    304304
    305 #define SOFT_LINK_FRAMEWORK_SOURCE(functionNamespace, framework) \
     305#define SOFT_LINK_FRAMEWORK_FOR_SOURCE(functionNamespace, framework) \
    306306    namespace functionNamespace { \
    307307    void* framework##Library(bool isOptional = false); \
  • trunk/Source/WebCore/platform/win/SoftLinking.h

    r181142 r181207  
    176176// See Source/WebCore/platform/cf/CoreMediaSoftLink.{cpp,h} for an example implementation.
    177177
    178 #define SOFT_LINK_FRAMEWORK_HEADER(functionNamespace, framework) \
     178#define SOFT_LINK_FRAMEWORK_FOR_HEADER(functionNamespace, framework) \
    179179    namespace functionNamespace { \
    180180    extern HMODULE framework##Library(bool isOptional = false); \
     
    200200
    201201#ifdef DEBUG_ALL
    202 #define SOFT_LINK_FRAMEWORK_SOURCE(functionNamespace, framework) SOFT_LINK_DEBUG_FRAMEWORK(functionNamespace, framework)
     202#define SOFT_LINK_FRAMEWORK_FOR_SOURCE(functionNamespace, framework) SOFT_LINK_DEBUG_FRAMEWORK(functionNamespace, framework)
    203203#else
    204 #define SOFT_LINK_FRAMEWORK_SOURCE(functionNamespace, framework) SOFT_LINK_FRAMEWORK(functionNamespace, framework)
     204#define SOFT_LINK_FRAMEWORK_FOR_SOURCE(functionNamespace, framework) SOFT_LINK_FRAMEWORK(functionNamespace, framework)
    205205#endif
    206206
Note: See TracChangeset for help on using the changeset viewer.