X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fthird_party%2FWebKit%2FSource%2Fcore%2Fdom%2Fcustom%2FCustomElementMicrotaskDispatcher.cpp;h=485721e630a034e252ad2cd205b4dc96ff191b97;hb=3545e9f2671f595d2a2f3ee75ca0393b01e35ef6;hp=295e599fc7627fa6876208ef6ee676587bc8bf0e;hpb=7d210d4c7e9ba36e635eabc5b5780495f8a63292;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskDispatcher.cpp b/src/third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskDispatcher.cpp index 295e599..485721e 100644 --- a/src/third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskDispatcher.cpp +++ b/src/third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskDispatcher.cpp @@ -6,9 +6,9 @@ #include "core/dom/custom/CustomElementMicrotaskDispatcher.h" #include "core/dom/Microtask.h" -#include "core/dom/custom/CustomElementCallbackDispatcher.h" #include "core/dom/custom/CustomElementCallbackQueue.h" #include "core/dom/custom/CustomElementMicrotaskImportStep.h" +#include "core/dom/custom/CustomElementProcessingStack.h" #include "core/dom/custom/CustomElementScheduler.h" #include "wtf/MainThread.h" @@ -66,14 +66,14 @@ void CustomElementMicrotaskDispatcher::doDispatch() // Finishing microtask work deletes all // CustomElementCallbackQueues. Being in a callback delivery scope // implies those queues could still be in use. - ASSERT_WITH_SECURITY_IMPLICATION(!CustomElementCallbackDispatcher::inCallbackDeliveryScope()); + ASSERT_WITH_SECURITY_IMPLICATION(!CustomElementProcessingStack::inCallbackDeliveryScope()); m_phase = Resolving; m_phase = DispatchingCallbacks; for (WillBeHeapVector >::iterator it = m_elements.begin(); it != m_elements.end(); ++it) { // Created callback may enqueue an attached callback. - CustomElementCallbackDispatcher::CallbackDeliveryScope scope; + CustomElementProcessingStack::CallbackDeliveryScope scope; (*it)->processInElementQueue(kMicrotaskQueueId); }