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

Unified Diff: third_party/WebKit/Source/core/dom/custom/V0CustomElementAsyncImportMicrotaskQueue.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/V0CustomElementAsyncImportMicrotaskQueue.h
diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementAsyncImportMicrotaskQueue.h b/third_party/WebKit/Source/core/dom/custom/V0CustomElementAsyncImportMicrotaskQueue.h
similarity index 75%
rename from third_party/WebKit/Source/core/dom/custom/CustomElementAsyncImportMicrotaskQueue.h
rename to third_party/WebKit/Source/core/dom/custom/V0CustomElementAsyncImportMicrotaskQueue.h
index 3c6a1d07a831ab0c6b89436881b6bf5f8797572e..88058b6cbfe00cd7bea63e2e7416498fcbe589b1 100644
--- a/third_party/WebKit/Source/core/dom/custom/CustomElementAsyncImportMicrotaskQueue.h
+++ b/third_party/WebKit/Source/core/dom/custom/V0CustomElementAsyncImportMicrotaskQueue.h
@@ -28,24 +28,24 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#ifndef CustomElementAsyncImportMicrotaskQueue_h
-#define CustomElementAsyncImportMicrotaskQueue_h
+#ifndef V0CustomElementAsyncImportMicrotaskQueue_h
+#define V0CustomElementAsyncImportMicrotaskQueue_h
-#include "core/dom/custom/CustomElementMicrotaskQueueBase.h"
+#include "core/dom/custom/V0CustomElementMicrotaskQueueBase.h"
namespace blink {
-class CustomElementAsyncImportMicrotaskQueue : public CustomElementMicrotaskQueueBase {
+class V0CustomElementAsyncImportMicrotaskQueue : public V0CustomElementMicrotaskQueueBase {
public:
- static CustomElementAsyncImportMicrotaskQueue* create() { return new CustomElementAsyncImportMicrotaskQueue(); }
+ static V0CustomElementAsyncImportMicrotaskQueue* create() { return new V0CustomElementAsyncImportMicrotaskQueue(); }
- void enqueue(CustomElementMicrotaskStep*);
+ void enqueue(V0CustomElementMicrotaskStep*);
private:
- CustomElementAsyncImportMicrotaskQueue() { }
+ V0CustomElementAsyncImportMicrotaskQueue() { }
void doDispatch() override;
};
} // namespace blink
-#endif // CustomElementAsyncImportMicrotaskQueue_h
+#endif // V0CustomElementAsyncImportMicrotaskQueue_h

Powered by Google App Engine
This is Rietveld 408576698