Changeset 239035 in webkit


Ignore:
Timestamp:
Dec 10, 2018 10:06:37 AM (5 years ago)
Author:
ap@apple.com
Message:

Move ENABLE_SEC_ITEM_SHIM out of WebKit's config.h
https://bugs.webkit.org/show_bug.cgi?id=192428

Reviewed by Tim Horton.

Source/WebKit:

  • config.h:

Source/WTF:

  • wtf/Platform.h:
Location:
trunk/Source
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r239034 r239035  
     12018-12-10  Alexey Proskuryakov  <ap@apple.com>
     2
     3        Move ENABLE_SEC_ITEM_SHIM out of WebKit's config.h
     4        https://bugs.webkit.org/show_bug.cgi?id=192428
     5
     6        Reviewed by Tim Horton.
     7
     8        * wtf/Platform.h:
     9
    1102018-12-10  Alexey Proskuryakov  <ap@apple.com>
    211
  • trunk/Source/WTF/wtf/Platform.h

    r239034 r239035  
    14491449#define HAVE_LINK_PREVIEW 1
    14501450#endif
     1451
     1452#if PLATFORM(COCOA)
     1453/* FIXME: This is a USE style macro, as it triggers the use of CFURLConnection framework stubs. */
     1454/* FIXME: Is this still necessary? CFURLConnection isn't used on Cocoa platforms any more. */
     1455#define ENABLE_SEC_ITEM_SHIM 1
     1456#endif
  • trunk/Source/WebKit/ChangeLog

    r239034 r239035  
     12018-12-10  Alexey Proskuryakov  <ap@apple.com>
     2
     3        Move ENABLE_SEC_ITEM_SHIM out of WebKit's config.h
     4        https://bugs.webkit.org/show_bug.cgi?id=192428
     5
     6        Reviewed by Tim Horton.
     7
     8        * config.h:
     9
    1102018-12-10  Alexey Proskuryakov  <ap@apple.com>
    211
  • trunk/Source/WebKit/config.h

    r239034 r239035  
    6161#define PLUGIN_ARCHITECTURE(ARCH) (defined PLUGIN_ARCHITECTURE_##ARCH && PLUGIN_ARCHITECTURE_##ARCH)
    6262
    63 #ifndef ENABLE_SEC_ITEM_SHIM
    64 #if PLATFORM(MAC) || PLATFORM(IOS_FAMILY)
    65 #define ENABLE_SEC_ITEM_SHIM 1
    66 #endif
    67 #endif
    68 
    6963// FIXME: We should work towards not using CredentialStorage in WebKit to not have problems with digest authentication.
    7064#ifndef USE_CREDENTIAL_STORAGE_WITH_NETWORK_SESSION
Note: See TracChangeset for help on using the changeset viewer.