Title: [147975] trunk/Source/WebCore
Revision
147975
Author
[email protected]
Date
2013-04-08 18:45:50 -0700 (Mon, 08 Apr 2013)

Log Message

Do not define CAN_THEME_URL_ICON for PLATFORM(WIN_CAIRO)
https://bugs.webkit.org/show_bug.cgi?id=108444

Reviewed by Darin Adler.

Image::loadPlatformResource("urlIcon") returns nothing
since r30961 on Windows which makes the code useless.

* loader/icon/IconDatabase.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (147974 => 147975)


--- trunk/Source/WebCore/ChangeLog	2013-04-09 01:40:56 UTC (rev 147974)
+++ trunk/Source/WebCore/ChangeLog	2013-04-09 01:45:50 UTC (rev 147975)
@@ -1,3 +1,15 @@
+2013-04-08  Patrick Gansterer  <[email protected]>
+
+        Do not define CAN_THEME_URL_ICON for PLATFORM(WIN_CAIRO)
+        https://bugs.webkit.org/show_bug.cgi?id=108444
+
+        Reviewed by Darin Adler.
+
+        Image::loadPlatformResource("urlIcon") returns nothing
+        since r30961 on Windows which makes the code useless.
+
+        * loader/icon/IconDatabase.cpp:
+
 2013-04-05  Roger Fong  <[email protected]>
 
         Build fix.

Modified: trunk/Source/WebCore/loader/icon/IconDatabase.cpp (147974 => 147975)


--- trunk/Source/WebCore/loader/icon/IconDatabase.cpp	2013-04-09 01:40:56 UTC (rev 147974)
+++ trunk/Source/WebCore/loader/icon/IconDatabase.cpp	2013-04-09 01:45:50 UTC (rev 147975)
@@ -52,7 +52,7 @@
 #define IS_ICON_SYNC_THREAD() (m_syncThread == currentThread())
 #define ASSERT_ICON_SYNC_THREAD() ASSERT(IS_ICON_SYNC_THREAD())
 
-#if PLATFORM(QT) || PLATFORM(GTK) || PLATFORM(WIN_CAIRO)
+#if PLATFORM(QT) || PLATFORM(GTK)
 #define CAN_THEME_URL_ICON
 #endif
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to