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

Unified Diff: third_party/WebKit/Source/core/html/imports/HTMLImportLoader.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/html/imports/HTMLImportLoader.cpp
diff --git a/third_party/WebKit/Source/core/html/imports/HTMLImportLoader.cpp b/third_party/WebKit/Source/core/html/imports/HTMLImportLoader.cpp
index 76009832c858a2ea170402c00530bee2554ecff8..d28bfd30f461348fd27a2c28d5d962f0c7b670b3 100644
--- a/third_party/WebKit/Source/core/html/imports/HTMLImportLoader.cpp
+++ b/third_party/WebKit/Source/core/html/imports/HTMLImportLoader.cpp
@@ -33,7 +33,7 @@
#include "core/dom/Document.h"
#include "core/dom/DocumentParser.h"
#include "core/dom/StyleEngine.h"
-#include "core/dom/custom/CustomElementSyncMicrotaskQueue.h"
+#include "core/dom/custom/V0CustomElementSyncMicrotaskQueue.h"
#include "core/html/HTMLDocument.h"
#include "core/html/imports/HTMLImportChild.h"
#include "core/html/imports/HTMLImportsController.h"
@@ -46,7 +46,7 @@ namespace blink {
HTMLImportLoader::HTMLImportLoader(HTMLImportsController* controller)
: m_controller(controller)
, m_state(StateLoading)
- , m_microtaskQueue(CustomElementSyncMicrotaskQueue::create())
+ , m_microtaskQueue(V0CustomElementSyncMicrotaskQueue::create())
{
}
@@ -211,7 +211,7 @@ bool HTMLImportLoader::shouldBlockScriptExecution() const
return firstImport()->state().shouldBlockScriptExecution();
}
-CustomElementSyncMicrotaskQueue* HTMLImportLoader::microtaskQueue() const
+V0CustomElementSyncMicrotaskQueue* HTMLImportLoader::microtaskQueue() const
{
return m_microtaskQueue;
}
« no previous file with comments | « third_party/WebKit/Source/core/html/imports/HTMLImportLoader.h ('k') | third_party/WebKit/Source/web/WebCustomElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698