| 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 283dc135779f28e59fd3d14146c5905c5d97f692..0fe203539466b4655499b9ce0c0fbaae911ab5f7 100644
|
| --- a/third_party/WebKit/Source/core/dom/ElementRareData.h
|
| +++ b/third_party/WebKit/Source/core/dom/ElementRareData.h
|
| @@ -32,6 +32,7 @@
|
| #include "core/dom/NodeRareData.h"
|
| #include "core/dom/PseudoElement.h"
|
| #include "core/dom/PseudoElementData.h"
|
| +#include "core/dom/custom/CustomElementDefinition.h"
|
| #include "core/dom/custom/V0CustomElementDefinition.h"
|
| #include "core/dom/shadow/ElementShadow.h"
|
| #include "core/html/ClassList.h"
|
| @@ -125,8 +126,12 @@ public:
|
| void decrementCompositorProxiedProperties(uint32_t properties);
|
| CompositorProxiedPropertySet* proxiedPropertyCounts() const { return m_proxiedProperties.get(); }
|
|
|
| - void setCustomElementDefinition(V0CustomElementDefinition* definition) { m_customElementDefinition = definition; }
|
| - V0CustomElementDefinition* customElementDefinition() const { return m_customElementDefinition.get(); }
|
| + void V0setCustomElementDefinition(V0CustomElementDefinition* definition) { m_V0customElementDefinition = definition; }
|
| + V0CustomElementDefinition* V0customElementDefinition() const { return m_V0customElementDefinition.get(); }
|
| +
|
| + void setCustomElementDefinition(CustomElementDefinition* definition) { m_customElementDefinition = definition; }
|
| + CustomElementDefinition* customElementDefinition() const { return m_customElementDefinition.get(); }
|
| +
|
|
|
| AttrNodeList& ensureAttrNodeList();
|
| AttrNodeList* attrNodeList() { return m_attrNodeList.get(); }
|
| @@ -172,7 +177,8 @@ private:
|
| Member<ResizeObserverDataMap> m_resizeObserverData;
|
|
|
| RefPtr<ComputedStyle> m_computedStyle;
|
| - Member<V0CustomElementDefinition> m_customElementDefinition;
|
| + Member<V0CustomElementDefinition> m_V0customElementDefinition;
|
| + Member<CustomElementDefinition> m_customElementDefinition;
|
|
|
| Member<PseudoElementData> m_pseudoElementData;
|
|
|
|
|