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

Unified Diff: third_party/WebKit/Source/core/dom/ElementRareData.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/ElementRareData.h
diff --git a/third_party/WebKit/Source/core/dom/ElementRareData.h b/third_party/WebKit/Source/core/dom/ElementRareData.h
index 31c1a34f9da14a6557a8e5c315cd996792790008..f5570bb1d8ff1455c4704b53a5d1adf632199c24 100644
--- a/third_party/WebKit/Source/core/dom/ElementRareData.h
+++ b/third_party/WebKit/Source/core/dom/ElementRareData.h
@@ -31,7 +31,7 @@
#include "core/dom/NodeIntersectionObserverData.h"
#include "core/dom/NodeRareData.h"
#include "core/dom/PseudoElement.h"
-#include "core/dom/custom/CustomElementDefinition.h"
+#include "core/dom/custom/V0CustomElementDefinition.h"
#include "core/dom/shadow/ElementShadow.h"
#include "core/html/ClassList.h"
#include "core/style/StyleInheritedData.h"
@@ -122,8 +122,8 @@ public:
void decrementCompositorProxiedProperties(uint32_t properties);
CompositorProxiedPropertySet* proxiedPropertyCounts() const { return m_proxiedProperties.get(); }
- void setCustomElementDefinition(CustomElementDefinition* definition) { m_customElementDefinition = definition; }
- CustomElementDefinition* customElementDefinition() const { return m_customElementDefinition.get(); }
+ void setCustomElementDefinition(V0CustomElementDefinition* definition) { m_customElementDefinition = definition; }
+ V0CustomElementDefinition* customElementDefinition() const { return m_customElementDefinition.get(); }
AttrNodeList& ensureAttrNodeList();
AttrNodeList* attrNodeList() { return m_attrNodeList.get(); }
@@ -161,7 +161,7 @@ private:
Member<NodeIntersectionObserverData> m_intersectionObserverData;
RefPtr<ComputedStyle> m_computedStyle;
- Member<CustomElementDefinition> m_customElementDefinition;
+ Member<V0CustomElementDefinition> m_customElementDefinition;
Member<PseudoElement> m_generatedBefore;
Member<PseudoElement> m_generatedAfter;
« no previous file with comments | « third_party/WebKit/Source/core/dom/Element.cpp ('k') | third_party/WebKit/Source/core/dom/custom/CustomElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698