Title: [208920] trunk/Source/WebCore
- Revision
- 208920
- Author
- [email protected]
- Date
- 2016-11-18 21:09:02 -0800 (Fri, 18 Nov 2016)
Log Message
Unreviewed attempt to fix the build after r208917.
* dom/CustomElementReactionQueue.cpp:
(WebCore::CustomElementReactionStack::ElementQueue::invokeAll):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (208919 => 208920)
--- trunk/Source/WebCore/ChangeLog 2016-11-19 04:45:47 UTC (rev 208919)
+++ trunk/Source/WebCore/ChangeLog 2016-11-19 05:09:02 UTC (rev 208920)
@@ -3,7 +3,14 @@
Unreviewed attempt to fix the build after r208917.
* dom/CustomElementReactionQueue.cpp:
+ (WebCore::CustomElementReactionStack::ElementQueue::invokeAll):
+2016-11-18 Chris Dumez <[email protected]>
+
+ Unreviewed attempt to fix the build after r208917.
+
+ * dom/CustomElementReactionQueue.cpp:
+
2016-11-18 Jiewen Tan <[email protected]>
Update SubtleCrypto::decrypt to match the latest spec
Modified: trunk/Source/WebCore/dom/CustomElementReactionQueue.cpp (208919 => 208920)
--- trunk/Source/WebCore/dom/CustomElementReactionQueue.cpp 2016-11-19 04:45:47 UTC (rev 208919)
+++ trunk/Source/WebCore/dom/CustomElementReactionQueue.cpp 2016-11-19 05:09:02 UTC (rev 208920)
@@ -37,7 +37,7 @@
#include <heap/Heap.h>
#include <wtf/Optional.h>
#include <wtf/Ref.h>
-#include <wtf/TemporaryChange.h>
+#include <wtf/SetForScope.h>
namespace WebCore {
@@ -215,7 +215,7 @@
{
#if !ASSERT_DISABLED
RELEASE_ASSERT(!m_invoking);
- TemporaryChange<bool> invoking(m_invoking, true);
+ SetForScope<bool> invoking(m_invoking, true);
#endif
Vector<Ref<Element>> elements;
elements.swap(m_elements);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes