Title: [150444] trunk/Source/WebCore
- Revision
- 150444
- Author
- [email protected]
- Date
- 2013-05-21 09:03:07 -0700 (Tue, 21 May 2013)
Log Message
PLATFORM(*) macros used in Source/WebCore/loader/archive/ArchiveFactory.cpp
https://bugs.webkit.org/show_bug.cgi?id=116453
Reviewed by Alexey Proskuryakov.
* loader/archive/ArchiveFactory.cpp: Remove a redundant PLATFORM(QT) macro when checking whether
to include the LegacyWebArchive.h header that's specific to the WebArchive support. The Qt port
does not enable the WebArchive feature at all (which is enabled only on AppleMac, AppleWin and iOS
platforms) so there's no reason to additionally condition the header include with building on
non-Qt platforms.
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (150443 => 150444)
--- trunk/Source/WebCore/ChangeLog 2013-05-21 15:58:53 UTC (rev 150443)
+++ trunk/Source/WebCore/ChangeLog 2013-05-21 16:03:07 UTC (rev 150444)
@@ -1,3 +1,16 @@
+2013-05-21 Zan Dobersek <[email protected]>
+
+ PLATFORM(*) macros used in Source/WebCore/loader/archive/ArchiveFactory.cpp
+ https://bugs.webkit.org/show_bug.cgi?id=116453
+
+ Reviewed by Alexey Proskuryakov.
+
+ * loader/archive/ArchiveFactory.cpp: Remove a redundant PLATFORM(QT) macro when checking whether
+ to include the LegacyWebArchive.h header that's specific to the WebArchive support. The Qt port
+ does not enable the WebArchive feature at all (which is enabled only on AppleMac, AppleWin and iOS
+ platforms) so there's no reason to additionally condition the header include with building on
+ non-Qt platforms.
+
2013-05-21 Alberto Garcia <[email protected]>
Add BlackBerry definition of NativeImagePtr
Modified: trunk/Source/WebCore/loader/archive/ArchiveFactory.cpp (150443 => 150444)
--- trunk/Source/WebCore/loader/archive/ArchiveFactory.cpp 2013-05-21 15:58:53 UTC (rev 150443)
+++ trunk/Source/WebCore/loader/archive/ArchiveFactory.cpp 2013-05-21 16:03:07 UTC (rev 150444)
@@ -31,7 +31,7 @@
#include "MIMETypeRegistry.h"
-#if USE(CF) && !PLATFORM(QT) && ENABLE(WEB_ARCHIVE)
+#if ENABLE(WEB_ARCHIVE) && USE(CF)
#include "LegacyWebArchive.h"
#endif
#if ENABLE(MHTML)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes