Changeset 261150 in webkit


Ignore:
Timestamp:
May 4, 2020 10:35:46 PM (4 years ago)
Author:
Darin Adler
Message:

Remove now-unneeded HAVE(ACCESSIBILITY_SUPPORT)
https://bugs.webkit.org/show_bug.cgi?id=211425

Reviewed by Alex Christensen.

Source/WebCore/PAL:

  • pal/spi/cocoa/AccessibilitySupportSPI.h: Remove HAVE(ACCESSIBILITY_SUPPORT).

Source/WebKit:

  • Platform/spi/Cocoa/AccessibilitySupportSPI.h: Remove HAVE(ACCESSIBILITY_SUPPORT)

and now-unnecessary C include guards.

Source/WTF:

  • wtf/PlatformHave.h: Don't set HAVE_ACCESSIBILITY_SUPPORT. It was on for all

Cocoa platform builds.

Location:
trunk/Source
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r261149 r261150  
     12020-05-04  Darin Adler  <darin@apple.com>
     2
     3        Remove now-unneeded HAVE(ACCESSIBILITY_SUPPORT)
     4        https://bugs.webkit.org/show_bug.cgi?id=211425
     5
     6        Reviewed by Alex Christensen.
     7
     8        * wtf/PlatformHave.h: Don't set HAVE_ACCESSIBILITY_SUPPORT. It was on for all
     9        Cocoa platform builds.
     10
    1112020-05-04  Darin Adler  <darin@apple.com>
    212
  • trunk/Source/WTF/wtf/PlatformHave.h

    r261149 r261150  
    401401#endif
    402402
    403 #if (PLATFORM(IOS_FAMILY) || (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101400))
    404 #define HAVE_ACCESSIBILITY_SUPPORT 1
    405 #endif
    406 
    407403#if PLATFORM(IOS_FAMILY) && __IPHONE_OS_VERSION_MIN_REQUIRED >= 140000
    408404#define HAVE_ACCESSIBILITY_BUNDLES_PATH 1
  • trunk/Source/WebCore/PAL/ChangeLog

    r261138 r261150  
     12020-05-04  Darin Adler  <darin@apple.com>
     2
     3        Remove now-unneeded HAVE(ACCESSIBILITY_SUPPORT)
     4        https://bugs.webkit.org/show_bug.cgi?id=211425
     5
     6        Reviewed by Alex Christensen.
     7
     8        * pal/spi/cocoa/AccessibilitySupportSPI.h: Remove HAVE(ACCESSIBILITY_SUPPORT).
     9
    1102020-05-04  Darin Adler  <darin@apple.com>
    211
  • trunk/Source/WebCore/PAL/pal/spi/cocoa/AccessibilitySupportSPI.h

    r258115 r261150  
    2626#pragma once
    2727
    28 #if HAVE(ACCESSIBILITY_SUPPORT)
    29 
    3028#if USE(APPLE_INTERNAL_SDK)
    3129
     
    5048
    5149#endif // USE(APPLE_INTERNAL_SDK)
    52 
    53 #endif // HAVE(ACCESSIBILITY_SUPPORT)
  • trunk/Source/WebKit/ChangeLog

    r261148 r261150  
     12020-05-04  Darin Adler  <darin@apple.com>
     2
     3        Remove now-unneeded HAVE(ACCESSIBILITY_SUPPORT)
     4        https://bugs.webkit.org/show_bug.cgi?id=211425
     5
     6        Reviewed by Alex Christensen.
     7
     8        * Platform/spi/Cocoa/AccessibilitySupportSPI.h: Remove HAVE(ACCESSIBILITY_SUPPORT)
     9        and now-unnecessary C include guards.
     10
    1112020-05-04  Darin Adler  <darin@apple.com>
    212
  • trunk/Source/WebKit/Platform/spi/Cocoa/AccessibilitySupportSPI.h

    r258064 r261150  
    2626#pragma once
    2727
    28 #if HAVE(ACCESSIBILITY_SUPPORT)
    29 
    3028#if USE(APPLE_INTERNAL_SDK)
    3129
    32 // FIXME (46432011): We shouldn't need to wrap this include in extern "C".
    33 WTF_EXTERN_C_BEGIN
    3430#include <AccessibilitySupport.h>
    35 WTF_EXTERN_C_END
    3631
    3732#else
     
    5449
    5550#endif
    56 
    57 #endif // HAVE(ACCESSIBILITY_SUPPORT)
Note: See TracChangeset for help on using the changeset viewer.