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

Unified Diff: third_party/WebKit/Source/core/dom/custom/V0CustomElementMicrotaskDispatcher.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/V0CustomElementMicrotaskDispatcher.h
diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskDispatcher.h b/third_party/WebKit/Source/core/dom/custom/V0CustomElementMicrotaskDispatcher.h
similarity index 54%
rename from third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskDispatcher.h
rename to third_party/WebKit/Source/core/dom/custom/V0CustomElementMicrotaskDispatcher.h
index 14c3543110696bcf13b7f7116a17a386a4e9d90c..083fde39652db72f7dc7bc7dfdd81221dfafcb8c 100644
--- a/third_party/WebKit/Source/core/dom/custom/CustomElementMicrotaskDispatcher.h
+++ b/third_party/WebKit/Source/core/dom/custom/V0CustomElementMicrotaskDispatcher.h
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CustomElementMicrotaskDispatcher_h
-#define CustomElementMicrotaskDispatcher_h
+#ifndef V0CustomElementMicrotaskDispatcher_h
+#define V0CustomElementMicrotaskDispatcher_h
#include "platform/heap/Handle.h"
#include "wtf/Noncopyable.h"
@@ -11,21 +11,21 @@
namespace blink {
-class CustomElementCallbackQueue;
+class V0CustomElementCallbackQueue;
-class CustomElementMicrotaskDispatcher final : public GarbageCollected<CustomElementMicrotaskDispatcher> {
- WTF_MAKE_NONCOPYABLE(CustomElementMicrotaskDispatcher);
+class V0CustomElementMicrotaskDispatcher final : public GarbageCollected<V0CustomElementMicrotaskDispatcher> {
+ WTF_MAKE_NONCOPYABLE(V0CustomElementMicrotaskDispatcher);
public:
- static CustomElementMicrotaskDispatcher& instance();
+ static V0CustomElementMicrotaskDispatcher& instance();
- void enqueue(CustomElementCallbackQueue*);
+ void enqueue(V0CustomElementCallbackQueue*);
bool elementQueueIsEmpty() { return m_elements.isEmpty(); }
DECLARE_TRACE();
private:
- CustomElementMicrotaskDispatcher();
+ V0CustomElementMicrotaskDispatcher();
void ensureMicrotaskScheduledForElementQueue();
void ensureMicrotaskScheduled();
@@ -40,9 +40,9 @@ private:
DispatchingCallbacks
} m_phase;
- HeapVector<Member<CustomElementCallbackQueue>> m_elements;
+ HeapVector<Member<V0CustomElementCallbackQueue>> m_elements;
};
} // namespace blink
-#endif // CustomElementMicrotaskDispatcher_h
+#endif // V0CustomElementMicrotaskDispatcher_h

Powered by Google App Engine
This is Rietveld 408576698