Title: [243747] trunk/Source/WTF
- Revision
- 243747
- Author
- [email protected]
- Date
- 2019-04-02 10:46:07 -0700 (Tue, 02 Apr 2019)
Log 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:
Modified Paths
Diff
Modified: trunk/Source/WTF/ChangeLog (243746 => 243747)
--- trunk/Source/WTF/ChangeLog 2019-04-02 16:33:02 UTC (rev 243746)
+++ trunk/Source/WTF/ChangeLog 2019-04-02 17:46:07 UTC (rev 243747)
@@ -1,3 +1,17 @@
+2019-04-02 Keith Rollin <[email protected]>
+
+ 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:
+
2019-04-01 Michael Catanzaro <[email protected]>
Stop trying to support building JSC with clang 3.8
Modified: trunk/Source/WTF/wtf/Platform.h (243746 => 243747)
--- trunk/Source/WTF/wtf/Platform.h 2019-04-02 16:33:02 UTC (rev 243746)
+++ trunk/Source/WTF/wtf/Platform.h 2019-04-02 17:46:07 UTC (rev 243747)
@@ -1526,6 +1526,6 @@
#define ENABLE_PLATFORM_DRIVEN_TEXT_CHECKING 1
#endif
-#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)
+#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)
#define HAVE_ALLOWS_SENSITIVE_LOGGING 1
#endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes