| Index: third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskQueueBase.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskQueueBase.cpp b/third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskQueueBase.cpp
|
| deleted file mode 100644
|
| index 5c4f4e38de215e970cf2e85d4db8248b9ae256a8..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskQueueBase.cpp
|
| +++ /dev/null
|
| @@ -1,36 +0,0 @@
|
| -// Copyright 2014 The Chromium Authors. All rights reserved.
|
| -// Use of this source code is governed by a BSD-style license that can be
|
| -// found in the LICENSE file.
|
| -
|
| -#include "core/dom/custom/CustomElementMicrotaskQueueBase.h"
|
| -
|
| -#include "core/dom/custom/CustomElementProcessingStack.h"
|
| -
|
| -namespace blink {
|
| -
|
| -void CustomElementMicrotaskQueueBase::dispatch()
|
| -{
|
| - RELEASE_ASSERT(!m_inDispatch);
|
| - m_inDispatch = true;
|
| - doDispatch();
|
| - m_inDispatch = false;
|
| -}
|
| -
|
| -DEFINE_TRACE(CustomElementMicrotaskQueueBase)
|
| -{
|
| - visitor->trace(m_queue);
|
| -}
|
| -
|
| -#if !defined(NDEBUG)
|
| -void CustomElementMicrotaskQueueBase::show(unsigned indent)
|
| -{
|
| - for (unsigned q = 0; q < m_queue.size(); ++q) {
|
| - if (m_queue[q])
|
| - m_queue[q]->show(indent);
|
| - else
|
| - fprintf(stderr, "%*snull\n", indent, "");
|
| - }
|
| -}
|
| -#endif
|
| -
|
| -} // namespace blink
|
|
|