Title: [240633] trunk
Revision
240633
Author
[email protected]
Date
2019-01-28 18:59:08 -0800 (Mon, 28 Jan 2019)

Log Message

[watchOS] Enable Parental Controls content filtering
https://bugs.webkit.org/show_bug.cgi?id=193939
<rdar://problem/46641912>

Reviewed by Ryosuke Niwa.

Source/_javascript_Core:

* Configurations/FeatureDefines.xcconfig:

Source/WebCore:

* Configurations/FeatureDefines.xcconfig:

Source/WebCore/PAL:

* Configurations/FeatureDefines.xcconfig:

Source/WebKit:

* Configurations/FeatureDefines.xcconfig:

Source/WebKitLegacy/mac:

* Configurations/FeatureDefines.xcconfig:

Source/WTF:

* wtf/Platform.h:

Tools:

* TestWebKitAPI/Configurations/FeatureDefines.xcconfig:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (240632 => 240633)


--- trunk/Source/_javascript_Core/ChangeLog	2019-01-29 02:03:45 UTC (rev 240632)
+++ trunk/Source/_javascript_Core/ChangeLog	2019-01-29 02:59:08 UTC (rev 240633)
@@ -1,3 +1,13 @@
+2019-01-28  Andy Estes  <[email protected]>
+
+        [watchOS] Enable Parental Controls content filtering
+        https://bugs.webkit.org/show_bug.cgi?id=193939
+        <rdar://problem/46641912>
+
+        Reviewed by Ryosuke Niwa.
+
+        * Configurations/FeatureDefines.xcconfig:
+
 2019-01-28  Mark Lam  <[email protected]>
 
         ToString node actually does GC.

Modified: trunk/Source/_javascript_Core/Configurations/FeatureDefines.xcconfig (240632 => 240633)


--- trunk/Source/_javascript_Core/Configurations/FeatureDefines.xcconfig	2019-01-29 02:03:45 UTC (rev 240632)
+++ trunk/Source/_javascript_Core/Configurations/FeatureDefines.xcconfig	2019-01-29 02:59:08 UTC (rev 240633)
@@ -75,6 +75,8 @@
 ENABLE_CONTENT_FILTERING_iphoneos = ENABLE_CONTENT_FILTERING;
 ENABLE_CONTENT_FILTERING_iphonesimulator = ENABLE_CONTENT_FILTERING;
 ENABLE_CONTENT_FILTERING_macosx = ENABLE_CONTENT_FILTERING;
+ENABLE_CONTENT_FILTERING_watchos = ENABLE_CONTENT_FILTERING;
+ENABLE_CONTENT_FILTERING_watchsimulator = ENABLE_CONTENT_FILTERING;
 
 ENABLE_CSS3_TEXT = ;
 

Modified: trunk/Source/WTF/ChangeLog (240632 => 240633)


--- trunk/Source/WTF/ChangeLog	2019-01-29 02:03:45 UTC (rev 240632)
+++ trunk/Source/WTF/ChangeLog	2019-01-29 02:59:08 UTC (rev 240633)
@@ -1,3 +1,13 @@
+2019-01-28  Andy Estes  <[email protected]>
+
+        [watchOS] Enable Parental Controls content filtering
+        https://bugs.webkit.org/show_bug.cgi?id=193939
+        <rdar://problem/46641912>
+
+        Reviewed by Ryosuke Niwa.
+
+        * wtf/Platform.h:
+
 2019-01-28  Ross Kirsling  <[email protected]>
 
         [JSCOnly][WTF] Expose FileSystem.

Modified: trunk/Source/WTF/wtf/Platform.h (240632 => 240633)


--- trunk/Source/WTF/wtf/Platform.h	2019-01-29 02:03:45 UTC (rev 240632)
+++ trunk/Source/WTF/wtf/Platform.h	2019-01-29 02:59:08 UTC (rev 240633)
@@ -1082,6 +1082,9 @@
 
 #if !PLATFORM(WATCHOS) && !PLATFORM(APPLETV) && !PLATFORM(IOSMAC)
 #define ENABLE_DATA_DETECTION 1
+#endif
+
+#if !PLATFORM(APPLETV) && !PLATFORM(IOSMAC)
 #define HAVE_PARENTAL_CONTROLS 1
 #endif
 

Modified: trunk/Source/WebCore/ChangeLog (240632 => 240633)


--- trunk/Source/WebCore/ChangeLog	2019-01-29 02:03:45 UTC (rev 240632)
+++ trunk/Source/WebCore/ChangeLog	2019-01-29 02:59:08 UTC (rev 240633)
@@ -1,3 +1,13 @@
+2019-01-28  Andy Estes  <[email protected]>
+
+        [watchOS] Enable Parental Controls content filtering
+        https://bugs.webkit.org/show_bug.cgi?id=193939
+        <rdar://problem/46641912>
+
+        Reviewed by Ryosuke Niwa.
+
+        * Configurations/FeatureDefines.xcconfig:
+
 2019-01-28  Dean Jackson  <[email protected]>
 
         Produce "pen" Pointer Events if using a stylus (e.g. Apple Pencil)

Modified: trunk/Source/WebCore/Configurations/FeatureDefines.xcconfig (240632 => 240633)


--- trunk/Source/WebCore/Configurations/FeatureDefines.xcconfig	2019-01-29 02:03:45 UTC (rev 240632)
+++ trunk/Source/WebCore/Configurations/FeatureDefines.xcconfig	2019-01-29 02:59:08 UTC (rev 240633)
@@ -75,6 +75,8 @@
 ENABLE_CONTENT_FILTERING_iphoneos = ENABLE_CONTENT_FILTERING;
 ENABLE_CONTENT_FILTERING_iphonesimulator = ENABLE_CONTENT_FILTERING;
 ENABLE_CONTENT_FILTERING_macosx = ENABLE_CONTENT_FILTERING;
+ENABLE_CONTENT_FILTERING_watchos = ENABLE_CONTENT_FILTERING;
+ENABLE_CONTENT_FILTERING_watchsimulator = ENABLE_CONTENT_FILTERING;
 
 ENABLE_CSS3_TEXT = ;
 

Modified: trunk/Source/WebCore/PAL/ChangeLog (240632 => 240633)


--- trunk/Source/WebCore/PAL/ChangeLog	2019-01-29 02:03:45 UTC (rev 240632)
+++ trunk/Source/WebCore/PAL/ChangeLog	2019-01-29 02:59:08 UTC (rev 240633)
@@ -1,3 +1,13 @@
+2019-01-28  Andy Estes  <[email protected]>
+
+        [watchOS] Enable Parental Controls content filtering
+        https://bugs.webkit.org/show_bug.cgi?id=193939
+        <rdar://problem/46641912>
+
+        Reviewed by Ryosuke Niwa.
+
+        * Configurations/FeatureDefines.xcconfig:
+
 2019-01-27  Chris Fleizach  <[email protected]>
 
         AX: Introduce isolated accessibility tree

Modified: trunk/Source/WebCore/PAL/Configurations/FeatureDefines.xcconfig (240632 => 240633)


--- trunk/Source/WebCore/PAL/Configurations/FeatureDefines.xcconfig	2019-01-29 02:03:45 UTC (rev 240632)
+++ trunk/Source/WebCore/PAL/Configurations/FeatureDefines.xcconfig	2019-01-29 02:59:08 UTC (rev 240633)
@@ -75,6 +75,8 @@
 ENABLE_CONTENT_FILTERING_iphoneos = ENABLE_CONTENT_FILTERING;
 ENABLE_CONTENT_FILTERING_iphonesimulator = ENABLE_CONTENT_FILTERING;
 ENABLE_CONTENT_FILTERING_macosx = ENABLE_CONTENT_FILTERING;
+ENABLE_CONTENT_FILTERING_watchos = ENABLE_CONTENT_FILTERING;
+ENABLE_CONTENT_FILTERING_watchsimulator = ENABLE_CONTENT_FILTERING;
 
 ENABLE_CSS3_TEXT = ;
 

Modified: trunk/Source/WebKit/ChangeLog (240632 => 240633)


--- trunk/Source/WebKit/ChangeLog	2019-01-29 02:03:45 UTC (rev 240632)
+++ trunk/Source/WebKit/ChangeLog	2019-01-29 02:59:08 UTC (rev 240633)
@@ -1,3 +1,13 @@
+2019-01-28  Andy Estes  <[email protected]>
+
+        [watchOS] Enable Parental Controls content filtering
+        https://bugs.webkit.org/show_bug.cgi?id=193939
+        <rdar://problem/46641912>
+
+        Reviewed by Ryosuke Niwa.
+
+        * Configurations/FeatureDefines.xcconfig:
+
 2019-01-28  David Kilzer  <[email protected]>
 
         REGRESSION (r236481): Move soft-linking of LocalAuthentication.framework out of LocalAuthenticationSoftLink.h

Modified: trunk/Source/WebKit/Configurations/FeatureDefines.xcconfig (240632 => 240633)


--- trunk/Source/WebKit/Configurations/FeatureDefines.xcconfig	2019-01-29 02:03:45 UTC (rev 240632)
+++ trunk/Source/WebKit/Configurations/FeatureDefines.xcconfig	2019-01-29 02:59:08 UTC (rev 240633)
@@ -75,6 +75,8 @@
 ENABLE_CONTENT_FILTERING_iphoneos = ENABLE_CONTENT_FILTERING;
 ENABLE_CONTENT_FILTERING_iphonesimulator = ENABLE_CONTENT_FILTERING;
 ENABLE_CONTENT_FILTERING_macosx = ENABLE_CONTENT_FILTERING;
+ENABLE_CONTENT_FILTERING_watchos = ENABLE_CONTENT_FILTERING;
+ENABLE_CONTENT_FILTERING_watchsimulator = ENABLE_CONTENT_FILTERING;
 
 ENABLE_CSS3_TEXT = ;
 

Modified: trunk/Source/WebKitLegacy/mac/ChangeLog (240632 => 240633)


--- trunk/Source/WebKitLegacy/mac/ChangeLog	2019-01-29 02:03:45 UTC (rev 240632)
+++ trunk/Source/WebKitLegacy/mac/ChangeLog	2019-01-29 02:59:08 UTC (rev 240633)
@@ -1,3 +1,13 @@
+2019-01-28  Andy Estes  <[email protected]>
+
+        [watchOS] Enable Parental Controls content filtering
+        https://bugs.webkit.org/show_bug.cgi?id=193939
+        <rdar://problem/46641912>
+
+        Reviewed by Ryosuke Niwa.
+
+        * Configurations/FeatureDefines.xcconfig:
+
 2019-01-28  Timothy Hatcher  <[email protected]>
 
         Make it easier for non-Apple ports to enable dark mode CSS support.

Modified: trunk/Source/WebKitLegacy/mac/Configurations/FeatureDefines.xcconfig (240632 => 240633)


--- trunk/Source/WebKitLegacy/mac/Configurations/FeatureDefines.xcconfig	2019-01-29 02:03:45 UTC (rev 240632)
+++ trunk/Source/WebKitLegacy/mac/Configurations/FeatureDefines.xcconfig	2019-01-29 02:59:08 UTC (rev 240633)
@@ -75,6 +75,8 @@
 ENABLE_CONTENT_FILTERING_iphoneos = ENABLE_CONTENT_FILTERING;
 ENABLE_CONTENT_FILTERING_iphonesimulator = ENABLE_CONTENT_FILTERING;
 ENABLE_CONTENT_FILTERING_macosx = ENABLE_CONTENT_FILTERING;
+ENABLE_CONTENT_FILTERING_watchos = ENABLE_CONTENT_FILTERING;
+ENABLE_CONTENT_FILTERING_watchsimulator = ENABLE_CONTENT_FILTERING;
 
 ENABLE_CSS3_TEXT = ;
 

Modified: trunk/Tools/ChangeLog (240632 => 240633)


--- trunk/Tools/ChangeLog	2019-01-29 02:03:45 UTC (rev 240632)
+++ trunk/Tools/ChangeLog	2019-01-29 02:59:08 UTC (rev 240633)
@@ -1,3 +1,13 @@
+2019-01-28  Andy Estes  <[email protected]>
+
+        [watchOS] Enable Parental Controls content filtering
+        https://bugs.webkit.org/show_bug.cgi?id=193939
+        <rdar://problem/46641912>
+
+        Reviewed by Ryosuke Niwa.
+
+        * TestWebKitAPI/Configurations/FeatureDefines.xcconfig:
+
 2019-01-28  David Kilzer  <[email protected]>
 
         REGRESSION (r236481): Move soft-linking of LocalAuthentication.framework out of LocalAuthenticationSoftLink.h

Modified: trunk/Tools/TestWebKitAPI/Configurations/FeatureDefines.xcconfig (240632 => 240633)


--- trunk/Tools/TestWebKitAPI/Configurations/FeatureDefines.xcconfig	2019-01-29 02:03:45 UTC (rev 240632)
+++ trunk/Tools/TestWebKitAPI/Configurations/FeatureDefines.xcconfig	2019-01-29 02:59:08 UTC (rev 240633)
@@ -75,6 +75,8 @@
 ENABLE_CONTENT_FILTERING_iphoneos = ENABLE_CONTENT_FILTERING;
 ENABLE_CONTENT_FILTERING_iphonesimulator = ENABLE_CONTENT_FILTERING;
 ENABLE_CONTENT_FILTERING_macosx = ENABLE_CONTENT_FILTERING;
+ENABLE_CONTENT_FILTERING_watchos = ENABLE_CONTENT_FILTERING;
+ENABLE_CONTENT_FILTERING_watchsimulator = ENABLE_CONTENT_FILTERING;
 
 ENABLE_CSS3_TEXT = ;
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to