| Index: third_party/WebKit/Source/core/dom/custom/V0CustomElementMicrotaskQueueBase.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskQueueBase.cpp b/third_party/WebKit/Source/core/dom/custom/V0CustomElementMicrotaskQueueBase.cpp
|
| similarity index 66%
|
| rename from third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskQueueBase.cpp
|
| rename to third_party/WebKit/Source/core/dom/custom/V0CustomElementMicrotaskQueueBase.cpp
|
| index 5c4f4e38de215e970cf2e85d4db8248b9ae256a8..bf51ef9daa206ce33dad9814d31f1beee4e3eb52 100644
|
| --- a/third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskQueueBase.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/custom/V0CustomElementMicrotaskQueueBase.cpp
|
| @@ -2,13 +2,13 @@
|
| // 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/V0CustomElementMicrotaskQueueBase.h"
|
|
|
| -#include "core/dom/custom/CustomElementProcessingStack.h"
|
| +#include "core/dom/custom/V0CustomElementProcessingStack.h"
|
|
|
| namespace blink {
|
|
|
| -void CustomElementMicrotaskQueueBase::dispatch()
|
| +void V0CustomElementMicrotaskQueueBase::dispatch()
|
| {
|
| RELEASE_ASSERT(!m_inDispatch);
|
| m_inDispatch = true;
|
| @@ -16,13 +16,13 @@ void CustomElementMicrotaskQueueBase::dispatch()
|
| m_inDispatch = false;
|
| }
|
|
|
| -DEFINE_TRACE(CustomElementMicrotaskQueueBase)
|
| +DEFINE_TRACE(V0CustomElementMicrotaskQueueBase)
|
| {
|
| visitor->trace(m_queue);
|
| }
|
|
|
| #if !defined(NDEBUG)
|
| -void CustomElementMicrotaskQueueBase::show(unsigned indent)
|
| +void V0CustomElementMicrotaskQueueBase::show(unsigned indent)
|
| {
|
| for (unsigned q = 0; q < m_queue.size(); ++q) {
|
| if (m_queue[q])
|
|
|