Title: [140238] trunk/Source/WTF
Revision
140238
Author
[email protected]
Date
2013-01-18 23:48:44 -0800 (Fri, 18 Jan 2013)

Log Message

Remove unnecessary PLATFORM() tests
https://bugs.webkit.org/show_bug.cgi?id=107360

Patch by Laszlo Gombos <[email protected]> on 2013-01-18
Reviewed by Eric Seidel.

PLATFORM(WIN), PLATFORM(CHROMIUM) and PLATFORM(QT) are mutually
exclusive. Remove redundant PLATFORM() tests based on this
invariant.

* wtf/Platform.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (140237 => 140238)


--- trunk/Source/WTF/ChangeLog	2013-01-19 07:15:42 UTC (rev 140237)
+++ trunk/Source/WTF/ChangeLog	2013-01-19 07:48:44 UTC (rev 140238)
@@ -1,5 +1,18 @@
 2013-01-18  Laszlo Gombos  <[email protected]>
 
+        Remove unnecessary PLATFORM() tests
+        https://bugs.webkit.org/show_bug.cgi?id=107360
+
+        Reviewed by Eric Seidel.
+
+        PLATFORM(WIN), PLATFORM(CHROMIUM) and PLATFORM(QT) are mutually
+        exclusive. Remove redundant PLATFORM() tests based on this
+        invariant.
+
+        * wtf/Platform.h:
+
+2013-01-18  Laszlo Gombos  <[email protected]>
+
         Remove PLATFORM(TORCHMOBILE) from Assertions.h
         https://bugs.webkit.org/show_bug.cgi?id=107355
 

Modified: trunk/Source/WTF/wtf/Platform.h (140237 => 140238)


--- trunk/Source/WTF/wtf/Platform.h	2013-01-19 07:15:42 UTC (rev 140237)
+++ trunk/Source/WTF/wtf/Platform.h	2013-01-19 07:48:44 UTC (rev 140238)
@@ -635,7 +635,7 @@
 #define WTF_USE_CF 1
 #endif
 
-#if PLATFORM(WIN) && !OS(WINCE) && !PLATFORM(CHROMIUM) && !PLATFORM(WIN_CAIRO)
+#if PLATFORM(WIN) && !OS(WINCE) && !PLATFORM(WIN_CAIRO)
 #define WTF_USE_CFNETWORK 1
 #endif
 
@@ -643,11 +643,11 @@
 #define WTF_USE_CFURLCACHE 1
 #endif
 
-#if PLATFORM(WIN) && !OS(WINCE) && !PLATFORM(CHROMIUM) && !PLATFORM(QT)
+#if PLATFORM(WIN) && !OS(WINCE)
 #define ENABLE_WEB_ARCHIVE 1
 #endif
 
-#if PLATFORM(WIN) && !OS(WINCE) && !PLATFORM(CHROMIUM) && !PLATFORM(WIN_CAIRO) && !PLATFORM(QT)
+#if PLATFORM(WIN) && !OS(WINCE) && !PLATFORM(WIN_CAIRO)
 #define ENABLE_FULLSCREEN_API 1
 #endif
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to