Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(671)

Unified Diff: Source/core/dom/CustomElementCallbackDispatcher.cpp

Issue 23009004: Process Custom Elements in post-order. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Patch for landing. Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/dom/CustomElementCallbackDispatcher.cpp
diff --git a/Source/core/dom/CustomElementCallbackDispatcher.cpp b/Source/core/dom/CustomElementCallbackDispatcher.cpp
index 405d7cf570a7bfec1c05a17b82b684cbf41083f5..4bbde8f8590f4ddc563cbd8820e2be5f2b118fbf 100644
--- a/Source/core/dom/CustomElementCallbackDispatcher.cpp
+++ b/Source/core/dom/CustomElementCallbackDispatcher.cpp
@@ -147,17 +147,4 @@ CustomElementCallbackQueue* CustomElementCallbackDispatcher::ensureInCurrentElem
return queue;
}
-CustomElementCallbackQueue* CustomElementCallbackDispatcher::createAtFrontOfCurrentElementQueue(PassRefPtr<Element> element)
-{
- CustomElementCallbackQueue* queue = createCallbackQueue(element);
- queue->setOwner(currentElementQueue());
-
- // The created callback is unique in being prepended to the front
- // of the element queue
- m_flattenedProcessingStack.insert(inCallbackDeliveryScope() ? s_elementQueueStart : kNumSentinels, queue);
- ++s_elementQueueEnd;
-
- return queue;
-}
-
} // namespace WebCore
« no previous file with comments | « Source/core/dom/CustomElementCallbackDispatcher.h ('k') | Source/core/dom/CustomElementCallbackScheduler.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698