Title: [249328] trunk/Tools
Revision
249328
Author
krol...@apple.com
Date
2019-08-30 08:44:40 -0700 (Fri, 30 Aug 2019)

Log Message

Simplify PLATFORM _expression_
https://bugs.webkit.org/show_bug.cgi?id=201286
<rdar://problem/54822347>

Reviewed by Alexey Proskuryakov.

The preprocessor _expression_ conditionalizing the inclusion of the body
of ExitFullscreenOnEnterPiP.mm evolved into:

    #if PLATFORM(MAC) || (PLATFORM(IOS_FAMILY) && !PLATFORM(IOS_FAMILY_SIMULATOR))

Simplify this to just:

    #if !PLATFORM(IOS_FAMILY_SIMULATOR)

* TestWebKitAPI/Tests/WebKitCocoa/ExitFullscreenOnEnterPiP.mm:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (249327 => 249328)


--- trunk/Tools/ChangeLog	2019-08-30 15:37:26 UTC (rev 249327)
+++ trunk/Tools/ChangeLog	2019-08-30 15:44:40 UTC (rev 249328)
@@ -1,5 +1,24 @@
 2019-08-30  Keith Rollin  <krol...@apple.com>
 
+        Simplify PLATFORM _expression_
+        https://bugs.webkit.org/show_bug.cgi?id=201286
+        <rdar://problem/54822347>
+
+        Reviewed by Alexey Proskuryakov.
+
+        The preprocessor _expression_ conditionalizing the inclusion of the body
+        of ExitFullscreenOnEnterPiP.mm evolved into:
+
+            #if PLATFORM(MAC) || (PLATFORM(IOS_FAMILY) && !PLATFORM(IOS_FAMILY_SIMULATOR))
+
+        Simplify this to just:
+
+            #if !PLATFORM(IOS_FAMILY_SIMULATOR)
+
+        * TestWebKitAPI/Tests/WebKitCocoa/ExitFullscreenOnEnterPiP.mm:
+
+2019-08-30  Keith Rollin  <krol...@apple.com>
+
         Remove AppKitCompatibilityDeclarations.h
         https://bugs.webkit.org/show_bug.cgi?id=201283
         <rdar://problem/54822042>

Modified: trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/ExitFullscreenOnEnterPiP.mm (249327 => 249328)


--- trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/ExitFullscreenOnEnterPiP.mm	2019-08-30 15:37:26 UTC (rev 249327)
+++ trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/ExitFullscreenOnEnterPiP.mm	2019-08-30 15:44:40 UTC (rev 249328)
@@ -25,7 +25,7 @@
 
 #include "config.h"
 
-#if PLATFORM(MAC) || (PLATFORM(IOS_FAMILY) && !PLATFORM(IOS_FAMILY_SIMULATOR))
+#if !PLATFORM(IOS_FAMILY_SIMULATOR)
 
 #import "PlatformUtilities.h"
 #import "Test.h"
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to