| 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
|
|
|