[WinCairo] IconDatabase::defaultIcon always fails for non-CAN_THEME_URL_ICON builds.
authorcommit-queue@webkit.org <commit-queue@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Wed, 21 Sep 2011 17:10:45 +0000 (17:10 +0000)
committercommit-queue@webkit.org <commit-queue@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Wed, 21 Sep 2011 17:10:45 +0000 (17:10 +0000)
https://bugs.webkit.org/show_bug.cgi?id=67469

Patch by David Delaune <david.delaune@googlemail.com> 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

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@95646 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Source/WebCore/ChangeLog
Source/WebCore/loader/icon/IconDatabase.cpp

index ccd3ded..1bb8f2c 100644 (file)
@@ -1,3 +1,14 @@
+2011-09-21  David Delaune  <david.delaune@googlemail.com>
+
+        [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  <rniwa@webkit.org>
 
         Span element gets produced using backspace/delete to merge header with paragraph
index 0fd3c20..5ba95c6 100644 (file)
@@ -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