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

Unified Diff: third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskDispatcher.h

Issue 1914923002: Rename all existing custom element classes as V0 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: CustomElementV0 -> V0CustomElement Created 4 years, 8 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: third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskDispatcher.h
diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskDispatcher.h b/third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskDispatcher.h
deleted file mode 100644
index 14c3543110696bcf13b7f7116a17a386a4e9d90c..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskDispatcher.h
+++ /dev/null
@@ -1,48 +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.
-
-#ifndef CustomElementMicrotaskDispatcher_h
-#define CustomElementMicrotaskDispatcher_h
-
-#include "platform/heap/Handle.h"
-#include "wtf/Noncopyable.h"
-#include "wtf/Vector.h"
-
-namespace blink {
-
-class CustomElementCallbackQueue;
-
-class CustomElementMicrotaskDispatcher final : public GarbageCollected<CustomElementMicrotaskDispatcher> {
- WTF_MAKE_NONCOPYABLE(CustomElementMicrotaskDispatcher);
-public:
- static CustomElementMicrotaskDispatcher& instance();
-
- void enqueue(CustomElementCallbackQueue*);
-
- bool elementQueueIsEmpty() { return m_elements.isEmpty(); }
-
- DECLARE_TRACE();
-
-private:
- CustomElementMicrotaskDispatcher();
-
- void ensureMicrotaskScheduledForElementQueue();
- void ensureMicrotaskScheduled();
-
- static void dispatch();
- void doDispatch();
-
- bool m_hasScheduledMicrotask;
- enum {
- Quiescent,
- Resolving,
- DispatchingCallbacks
- } m_phase;
-
- HeapVector<Member<CustomElementCallbackQueue>> m_elements;
-};
-
-} // namespace blink
-
-#endif // CustomElementMicrotaskDispatcher_h

Powered by Google App Engine
This is Rietveld 408576698