Title: [92210] trunk/Source
Revision
92210
Author
je...@apple.com
Date
2011-08-02 11:29:59 -0700 (Tue, 02 Aug 2011)

Log Message

Move WTF_USE_AVFOUNDATION from _javascript_Core/wtf/platform.h to WebCore/config.h
https://bugs.webkit.org/show_bug.cgi?id=65552
        
Since this is a WebCore feature, there's no need to define it in _javascript_Core/wtf/platform.h.

Reviewed by Adam Roben.

Source/_javascript_Core: 

* wtf/Platform.h: Removed WTF_USE_AVFOUNDATION.

Source/WebCore: 

No change in functionality, so new tests.

* config.h: Added WTF_USE_AVFOUNDATION.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (92209 => 92210)


--- trunk/Source/_javascript_Core/ChangeLog	2011-08-02 18:29:24 UTC (rev 92209)
+++ trunk/Source/_javascript_Core/ChangeLog	2011-08-02 18:29:59 UTC (rev 92210)
@@ -1,3 +1,14 @@
+2011-08-02  Jeff Miller  <je...@apple.com>
+
+        Move WTF_USE_AVFOUNDATION from _javascript_Core/wtf/platform.h to WebCore/config.h
+        https://bugs.webkit.org/show_bug.cgi?id=65552
+        
+        Since this is a WebCore feature, there's no need to define it in _javascript_Core/wtf/platform.h.
+
+        Reviewed by Adam Roben.
+
+        * wtf/Platform.h: Removed WTF_USE_AVFOUNDATION.
+
 2011-08-01  Jean-luc Brouillet  <jean...@chromium.org>
 
         Removing old source files in gyp files that slow build

Modified: trunk/Source/_javascript_Core/wtf/Platform.h (92209 => 92210)


--- trunk/Source/_javascript_Core/wtf/Platform.h	2011-08-02 18:29:24 UTC (rev 92209)
+++ trunk/Source/_javascript_Core/wtf/Platform.h	2011-08-02 18:29:59 UTC (rev 92210)
@@ -1153,10 +1153,6 @@
 #define WTF_USE_PROTECTION_SPACE_AUTH_CALLBACK 1
 #endif
 
-#if PLATFORM(MAC) && !defined(BUILDING_ON_LEOPARD) && !defined(BUILDING_ON_SNOW_LEOPARD)
-#define WTF_USE_AVFOUNDATION 1
-#endif
-
 #if COMPILER(GCC)
 #define WARN_UNUSED_RETURN __attribute__ ((warn_unused_result))
 #else

Modified: trunk/Source/WebCore/ChangeLog (92209 => 92210)


--- trunk/Source/WebCore/ChangeLog	2011-08-02 18:29:24 UTC (rev 92209)
+++ trunk/Source/WebCore/ChangeLog	2011-08-02 18:29:59 UTC (rev 92210)
@@ -1,3 +1,16 @@
+2011-08-02  Jeff Miller  <je...@apple.com>
+
+        Move WTF_USE_AVFOUNDATION from _javascript_Core/wtf/platform.h to WebCore/config.h
+        https://bugs.webkit.org/show_bug.cgi?id=65552
+        
+        Since this is a WebCore feature, there's no need to define it in _javascript_Core/wtf/platform.h.
+
+        Reviewed by Adam Roben.
+
+        No change in functionality, so new tests.
+
+        * config.h: Added WTF_USE_AVFOUNDATION.
+
 2011-08-02  Alexandru Chiculita  <ach...@adobe.com>
 
         Split RenderBlock::layoutRunsAndFloats into multiple methods

Modified: trunk/Source/WebCore/config.h (92209 => 92210)


--- trunk/Source/WebCore/config.h	2011-08-02 18:29:24 UTC (rev 92209)
+++ trunk/Source/WebCore/config.h	2011-08-02 18:29:59 UTC (rev 92210)
@@ -203,7 +203,6 @@
 #endif
 #endif /* USE(CG) */
 
-
 #if PLATFORM(WIN) && USE(CG)
 #define WTF_USE_SAFARI_THEME 1
 #endif
@@ -218,3 +217,7 @@
 #include <bridge/npruntime_internal.h>
 #endif
 
+#if PLATFORM(MAC) && !defined(BUILDING_ON_LEOPARD) && !defined(BUILDING_ON_SNOW_LEOPARD)
+#define WTF_USE_AVFOUNDATION 1
+#endif
+
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to