Title: [158733] trunk/Source/WebCore
Revision
158733
Author
[email protected]
Date
2013-11-06 00:19:38 -0800 (Wed, 06 Nov 2013)

Log Message

Reinstate an annoying assertion that I accidentally commented out.

* loader/icon/IconDatabase.cpp:
(WebCore::IconDatabase::synchronousIconForPageURL):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (158732 => 158733)


--- trunk/Source/WebCore/ChangeLog	2013-11-06 08:14:46 UTC (rev 158732)
+++ trunk/Source/WebCore/ChangeLog	2013-11-06 08:19:38 UTC (rev 158733)
@@ -1,3 +1,10 @@
+2013-11-06  Andreas Kling  <[email protected]>
+
+        Reinstate an annoying assertion that I accidentally commented out.
+
+        * loader/icon/IconDatabase.cpp:
+        (WebCore::IconDatabase::synchronousIconForPageURL):
+
 2013-11-06  Brendan Long  <[email protected]>
 
         [GStreamer] Override label() and language() in Audio and VideoTrackPrivateGStreamer

Modified: trunk/Source/WebCore/loader/icon/IconDatabase.cpp (158732 => 158733)


--- trunk/Source/WebCore/loader/icon/IconDatabase.cpp	2013-11-06 08:14:46 UTC (rev 158732)
+++ trunk/Source/WebCore/loader/icon/IconDatabase.cpp	2013-11-06 08:19:38 UTC (rev 158733)
@@ -263,7 +263,7 @@
         return 0;
     
     // The only way we should *not* have an icon record is if this pageURL is retained but has no icon yet - make sure of that
-  //  ASSERT(iconRecord || m_retainedPageURLs.contains(pageURLOriginal));
+    ASSERT(iconRecord || m_retainedPageURLs.contains(pageURLOriginal));
     
     if (!iconRecord)
         return 0;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to