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

Unified Diff: third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskQueueBase.cpp

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

Powered by Google App Engine
This is Rietveld 408576698