Title: [95646] trunk/Source/WebCore
Revision
95646
Author
[email protected]
Date
2011-09-21 10:10:45 -0700 (Wed, 21 Sep 2011)

Log Message

[WinCairo] IconDatabase::defaultIcon always fails for non-CAN_THEME_URL_ICON builds.
https://bugs.webkit.org/show_bug.cgi?id=67469

Patch by David Delaune <[email protected]> on 2011-09-21
Reviewed by Brent Fulgham.

No new functionality added in this change.

* loader/icon/IconDatabase.cpp: defining CAN_THEME_URL_ICON for the WIN_CAIRO

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (95645 => 95646)


--- trunk/Source/WebCore/ChangeLog	2011-09-21 17:06:53 UTC (rev 95645)
+++ trunk/Source/WebCore/ChangeLog	2011-09-21 17:10:45 UTC (rev 95646)
@@ -1,3 +1,14 @@
+2011-09-21  David Delaune  <[email protected]>
+
+        [WinCairo] IconDatabase::defaultIcon always fails for non-CAN_THEME_URL_ICON builds.
+        https://bugs.webkit.org/show_bug.cgi?id=67469
+
+        Reviewed by Brent Fulgham.
+
+        No new functionality added in this change.
+
+        * loader/icon/IconDatabase.cpp: defining CAN_THEME_URL_ICON for the WIN_CAIRO
+
 2011-09-20  Ryosuke Niwa  <[email protected]>
 
         Span element gets produced using backspace/delete to merge header with paragraph

Modified: trunk/Source/WebCore/loader/icon/IconDatabase.cpp (95645 => 95646)


--- trunk/Source/WebCore/loader/icon/IconDatabase.cpp	2011-09-21 17:06:53 UTC (rev 95645)
+++ trunk/Source/WebCore/loader/icon/IconDatabase.cpp	2011-09-21 17:10:45 UTC (rev 95646)
@@ -51,7 +51,7 @@
 #define IS_ICON_SYNC_THREAD() (m_syncThread == currentThread())
 #define ASSERT_ICON_SYNC_THREAD() ASSERT(IS_ICON_SYNC_THREAD())
 
-#if PLATFORM(QT) || PLATFORM(GTK)
+#if PLATFORM(QT) || PLATFORM(GTK) || PLATFORM(WIN_CAIRO)
 #define CAN_THEME_URL_ICON
 #endif
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to