| Index: third_party/WebKit/Source/core/dom/custom/V0CustomElementMicrotaskDispatcher.h
|
| diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskDispatcher.h b/third_party/WebKit/Source/core/dom/custom/V0CustomElementMicrotaskDispatcher.h
|
| similarity index 54%
|
| rename from third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskDispatcher.h
|
| rename to third_party/WebKit/Source/core/dom/custom/V0CustomElementMicrotaskDispatcher.h
|
| index 14c3543110696bcf13b7f7116a17a386a4e9d90c..083fde39652db72f7dc7bc7dfdd81221dfafcb8c 100644
|
| --- a/third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskDispatcher.h
|
| +++ b/third_party/WebKit/Source/core/dom/custom/V0CustomElementMicrotaskDispatcher.h
|
| @@ -2,8 +2,8 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef CustomElementMicrotaskDispatcher_h
|
| -#define CustomElementMicrotaskDispatcher_h
|
| +#ifndef V0CustomElementMicrotaskDispatcher_h
|
| +#define V0CustomElementMicrotaskDispatcher_h
|
|
|
| #include "platform/heap/Handle.h"
|
| #include "wtf/Noncopyable.h"
|
| @@ -11,21 +11,21 @@
|
|
|
| namespace blink {
|
|
|
| -class CustomElementCallbackQueue;
|
| +class V0CustomElementCallbackQueue;
|
|
|
| -class CustomElementMicrotaskDispatcher final : public GarbageCollected<CustomElementMicrotaskDispatcher> {
|
| - WTF_MAKE_NONCOPYABLE(CustomElementMicrotaskDispatcher);
|
| +class V0CustomElementMicrotaskDispatcher final : public GarbageCollected<V0CustomElementMicrotaskDispatcher> {
|
| + WTF_MAKE_NONCOPYABLE(V0CustomElementMicrotaskDispatcher);
|
| public:
|
| - static CustomElementMicrotaskDispatcher& instance();
|
| + static V0CustomElementMicrotaskDispatcher& instance();
|
|
|
| - void enqueue(CustomElementCallbackQueue*);
|
| + void enqueue(V0CustomElementCallbackQueue*);
|
|
|
| bool elementQueueIsEmpty() { return m_elements.isEmpty(); }
|
|
|
| DECLARE_TRACE();
|
|
|
| private:
|
| - CustomElementMicrotaskDispatcher();
|
| + V0CustomElementMicrotaskDispatcher();
|
|
|
| void ensureMicrotaskScheduledForElementQueue();
|
| void ensureMicrotaskScheduled();
|
| @@ -40,9 +40,9 @@ private:
|
| DispatchingCallbacks
|
| } m_phase;
|
|
|
| - HeapVector<Member<CustomElementCallbackQueue>> m_elements;
|
| + HeapVector<Member<V0CustomElementCallbackQueue>> m_elements;
|
| };
|
|
|
| } // namespace blink
|
|
|
| -#endif // CustomElementMicrotaskDispatcher_h
|
| +#endif // V0CustomElementMicrotaskDispatcher_h
|
|
|