⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 243747 in webkit


Ignore:
Timestamp:
Apr 2, 2019, 10:46:07 AM (7 years ago)
Author:
Keith Rollin
Message:

Inhibit CFNetwork logging in private sessions
https://bugs.webkit.org/show_bug.cgi?id=196268
<rdar://problem/48210793>

Fix a conditional in Platform.h where IOS should have been used
instead of IOS_FAMILY. The latter happened to work, but we really want
to be using the proper symbol here.

Reviewed by Alexey Proskuryakov.

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

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r243697 r243747  
     12019-04-02  Keith Rollin  <krollin@apple.com>
     2
     3        Inhibit CFNetwork logging in private sessions
     4        https://bugs.webkit.org/show_bug.cgi?id=196268
     5        <rdar://problem/48210793>
     6
     7        Fix a conditional in Platform.h where IOS should have been used
     8        instead of IOS_FAMILY. The latter happened to work, but we really want
     9        to be using the proper symbol here.
     10
     11        Reviewed by Alexey Proskuryakov.
     12
     13        * wtf/Platform.h:
     14
    1152019-04-01  Michael Catanzaro  <mcatanzaro@igalia.com>
    216
  • trunk/Source/WTF/wtf/Platform.h

    r243619 r243747  
    15271527#endif
    15281528
    1529 #if (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101500) || (PLATFORM(IOS_FAMILY) && __IPHONE_OS_VERSION_MIN_REQUIRED >= 130000) || (PLATFORM(WATCHOS) && __WATCH_OS_VERSION_MIN_REQUIRED >= 60000) || (PLATFORM(APPLETV) && __TV_OS_VERSION_MIN_REQUIRED >= 130000)
     1529#if (PLATFORM(MAC) && __MAC_OS_X_VERSION_MIN_REQUIRED >= 101500) || (PLATFORM(IOS) && __IPHONE_OS_VERSION_MIN_REQUIRED >= 130000) || (PLATFORM(WATCHOS) && __WATCH_OS_VERSION_MIN_REQUIRED >= 60000) || (PLATFORM(APPLETV) && __TV_OS_VERSION_MIN_REQUIRED >= 130000)
    15301530#define HAVE_ALLOWS_SENSITIVE_LOGGING 1
    15311531#endif
Note: See TracChangeset for help on using the changeset viewer.