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

Unified Diff: third_party/WebKit/Source/core/dom/custom/V0CustomElementScheduler.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/V0CustomElementScheduler.h
diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementScheduler.h b/third_party/WebKit/Source/core/dom/custom/V0CustomElementScheduler.h
similarity index 62%
rename from third_party/WebKit/Source/core/dom/custom/CustomElementScheduler.h
rename to third_party/WebKit/Source/core/dom/custom/V0CustomElementScheduler.h
index 81ae372db94e1d48003acec0dddfc2ff5fe2571c..8cc2bc6e3fee1e6160d0e3ffd4e52f30dffc389a 100644
--- a/third_party/WebKit/Source/core/dom/custom/CustomElementScheduler.h
+++ b/third_party/WebKit/Source/core/dom/custom/V0CustomElementScheduler.h
@@ -28,41 +28,41 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#ifndef CustomElementScheduler_h
-#define CustomElementScheduler_h
+#ifndef V0CustomElementScheduler_h
+#define V0CustomElementScheduler_h
-#include "core/dom/custom/CustomElementCallbackQueue.h"
-#include "core/dom/custom/CustomElementLifecycleCallbacks.h"
+#include "core/dom/custom/V0CustomElementCallbackQueue.h"
+#include "core/dom/custom/V0CustomElementLifecycleCallbacks.h"
#include "platform/heap/Handle.h"
#include "wtf/HashMap.h"
#include "wtf/text/AtomicString.h"
namespace blink {
-class CustomElementDescriptor;
-class CustomElementMicrotaskImportStep;
-class CustomElementMicrotaskStep;
-class CustomElementRegistrationContext;
+class V0CustomElementDescriptor;
+class V0CustomElementMicrotaskImportStep;
+class V0CustomElementMicrotaskStep;
+class V0CustomElementRegistrationContext;
class HTMLImportChild;
-class CustomElementScheduler final : public GarbageCollected<CustomElementScheduler> {
+class V0CustomElementScheduler final : public GarbageCollected<V0CustomElementScheduler> {
public:
- static void scheduleCallback(CustomElementLifecycleCallbacks*, Element*, CustomElementLifecycleCallbacks::CallbackType);
- static void scheduleAttributeChangedCallback(CustomElementLifecycleCallbacks*, Element*, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue);
+ static void scheduleCallback(V0CustomElementLifecycleCallbacks*, Element*, V0CustomElementLifecycleCallbacks::CallbackType);
+ static void scheduleAttributeChangedCallback(V0CustomElementLifecycleCallbacks*, Element*, const AtomicString& name, const AtomicString& oldValue, const AtomicString& newValue);
- static void resolveOrScheduleResolution(CustomElementRegistrationContext*, Element*, const CustomElementDescriptor&);
- static CustomElementMicrotaskImportStep* scheduleImport(HTMLImportChild*);
+ static void resolveOrScheduleResolution(V0CustomElementRegistrationContext*, Element*, const V0CustomElementDescriptor&);
+ static V0CustomElementMicrotaskImportStep* scheduleImport(HTMLImportChild*);
static void microtaskDispatcherDidFinish();
static void callbackDispatcherDidFinish();
private:
- CustomElementScheduler() { }
+ V0CustomElementScheduler() { }
- static void enqueueMicrotaskStep(Document&, CustomElementMicrotaskStep*, bool importIsSync = true);
+ static void enqueueMicrotaskStep(Document&, V0CustomElementMicrotaskStep*, bool importIsSync = true);
};
} // namespace blink
-#endif // CustomElementScheduler_h
+#endif // V0CustomElementScheduler_h

Powered by Google App Engine
This is Rietveld 408576698