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

Unified Diff: third_party/WebKit/Source/core/dom/custom/V0CustomElementAsyncImportMicrotaskQueue.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/V0CustomElementAsyncImportMicrotaskQueue.cpp
diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementAsyncImportMicrotaskQueue.cpp b/third_party/WebKit/Source/core/dom/custom/V0CustomElementAsyncImportMicrotaskQueue.cpp
similarity index 80%
rename from third_party/WebKit/Source/core/dom/custom/CustomElementAsyncImportMicrotaskQueue.cpp
rename to third_party/WebKit/Source/core/dom/custom/V0CustomElementAsyncImportMicrotaskQueue.cpp
index fa6f1717a6a3b742e23e0318c21fa6e2293b4474..2a131753e2aa61bfd278b5ed7e340378914e865e 100644
--- a/third_party/WebKit/Source/core/dom/custom/CustomElementAsyncImportMicrotaskQueue.cpp
+++ b/third_party/WebKit/Source/core/dom/custom/V0CustomElementAsyncImportMicrotaskQueue.cpp
@@ -28,23 +28,23 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#include "core/dom/custom/CustomElementAsyncImportMicrotaskQueue.h"
+#include "core/dom/custom/V0CustomElementAsyncImportMicrotaskQueue.h"
-#include "core/dom/custom/CustomElementMicrotaskImportStep.h"
+#include "core/dom/custom/V0CustomElementMicrotaskImportStep.h"
namespace blink {
-void CustomElementAsyncImportMicrotaskQueue::enqueue(CustomElementMicrotaskStep* step)
+void V0CustomElementAsyncImportMicrotaskQueue::enqueue(V0CustomElementMicrotaskStep* step)
{
m_queue.append(step);
}
-void CustomElementAsyncImportMicrotaskQueue::doDispatch()
+void V0CustomElementAsyncImportMicrotaskQueue::doDispatch()
{
- HeapVector<Member<CustomElementMicrotaskStep>> remaining;
+ HeapVector<Member<V0CustomElementMicrotaskStep>> remaining;
for (unsigned i = 0; i < m_queue.size(); ++i) {
- if (CustomElementMicrotaskStep::Processing == m_queue[i]->process())
+ if (V0CustomElementMicrotaskStep::Processing == m_queue[i]->process())
remaining.append(m_queue[i].release());
}

Powered by Google App Engine
This is Rietveld 408576698