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

Unified Diff: third_party/WebKit/Source/core/dom/custom/V0CustomElementMicrotaskQueueBase.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/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])

Powered by Google App Engine
This is Rietveld 408576698