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

Unified Diff: third_party/WebKit/Source/core/dom/DocumentInit.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/DocumentInit.h
diff --git a/third_party/WebKit/Source/core/dom/DocumentInit.h b/third_party/WebKit/Source/core/dom/DocumentInit.h
index f38a7097c06cbad0d328c584ea5ec33606b72db4..add143d97c75075e0d38cbb842f76f4654f88622 100644
--- a/third_party/WebKit/Source/core/dom/DocumentInit.h
+++ b/third_party/WebKit/Source/core/dom/DocumentInit.h
@@ -31,7 +31,7 @@
#include "core/CoreExport.h"
#include "core/dom/SandboxFlags.h"
#include "core/dom/SecurityContext.h"
-#include "core/dom/custom/CustomElementRegistrationContext.h"
+#include "core/dom/custom/V0CustomElementRegistrationContext.h"
#include "platform/heap/Handle.h"
#include "platform/weborigin/KURL.h"
#include "wtf/WeakPtr.h"
@@ -72,9 +72,9 @@ public:
LocalFrame* ownerFrame() const;
Settings* settings() const;
- DocumentInit& withRegistrationContext(CustomElementRegistrationContext*);
+ DocumentInit& withRegistrationContext(V0CustomElementRegistrationContext*);
DocumentInit& withNewRegistrationContext();
- CustomElementRegistrationContext* registrationContext(Document*) const;
+ V0CustomElementRegistrationContext* registrationContext(Document*) const;
Document* contextDocument() const;
static DocumentInit fromContext(Document* contextDocument, const KURL& = KURL());
@@ -88,7 +88,7 @@ private:
Member<Document> m_owner;
Member<Document> m_contextDocument;
Member<HTMLImportsController> m_importsController;
- Member<CustomElementRegistrationContext> m_registrationContext;
+ Member<V0CustomElementRegistrationContext> m_registrationContext;
bool m_createNewRegistrationContext;
// In some rare cases, we'll re-use a LocalDOMWindow for a new Document. For example,
« no previous file with comments | « third_party/WebKit/Source/core/dom/Document.cpp ('k') | third_party/WebKit/Source/core/dom/DocumentInit.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698