Title: [180554] trunk/Source/WebCore
Revision
180554
Author
an...@apple.com
Date
2015-02-24 03:38:53 -0800 (Tue, 24 Feb 2015)

Log Message

       Give TemporaryChange for m_inLoadPendingImages assertion a name so it actually does something.

* css/StyleResolver.cpp:
(WebCore::StyleResolver::loadPendingImages):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (180553 => 180554)


--- trunk/Source/WebCore/ChangeLog	2015-02-24 11:02:14 UTC (rev 180553)
+++ trunk/Source/WebCore/ChangeLog	2015-02-24 11:38:53 UTC (rev 180554)
@@ -1,3 +1,10 @@
+2015-02-24  Antti Koivisto  <an...@apple.com>
+
+       Give TemporaryChange for m_inLoadPendingImages assertion a name so it actually does something.
+
+        * css/StyleResolver.cpp:
+        (WebCore::StyleResolver::loadPendingImages):
+
 2015-02-23  Commit Queue  <commit-qu...@webkit.org>
 
         Unreviewed, rolling out r180547 and r180550.

Modified: trunk/Source/WebCore/css/StyleResolver.cpp (180553 => 180554)


--- trunk/Source/WebCore/css/StyleResolver.cpp	2015-02-24 11:02:14 UTC (rev 180553)
+++ trunk/Source/WebCore/css/StyleResolver.cpp	2015-02-24 11:38:53 UTC (rev 180554)
@@ -2438,7 +2438,7 @@
 void StyleResolver::loadPendingImages()
 {
     RELEASE_ASSERT(!m_inLoadPendingImages);
-    TemporaryChange<bool> { m_inLoadPendingImages, true };
+    TemporaryChange<bool> changeInLoadPendingImages(m_inLoadPendingImages, true);
 
     if (m_state.pendingImageProperties().isEmpty())
         return;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to