| Index: third_party/WebKit/Source/core/dom/Element.h
|
| diff --git a/third_party/WebKit/Source/core/dom/Element.h b/third_party/WebKit/Source/core/dom/Element.h
|
| index 854233d82233ad48ccf94ada5423b33a32236e6e..42d30222811979dcaaaf808a60d792fb4494b11e 100644
|
| --- a/third_party/WebKit/Source/core/dom/Element.h
|
| +++ b/third_party/WebKit/Source/core/dom/Element.h
|
| @@ -50,6 +50,7 @@ class ClientRect;
|
| class ClientRectList;
|
| class CompositorMutation;
|
| class V0CustomElementDefinition;
|
| +class CustomElementDefinition;
|
| class DOMStringMap;
|
| class DOMTokenList;
|
| class Dictionary;
|
| @@ -517,8 +518,11 @@ public:
|
| void clearHasPendingResources() { clearElementFlag(HasPendingResources); }
|
| virtual void buildPendingResource() { }
|
|
|
| - void setCustomElementDefinition(V0CustomElementDefinition*);
|
| - V0CustomElementDefinition* customElementDefinition() const;
|
| + void V0setCustomElementDefinition(V0CustomElementDefinition*);
|
| + V0CustomElementDefinition* V0customElementDefinition() const;
|
| +
|
| + void setCustomElementDefinition(CustomElementDefinition*);
|
| + CustomElementDefinition* customElementDefinition() const;
|
|
|
| bool containsFullScreenElement() const { return hasElementFlag(ContainsFullScreenElement); }
|
| void setContainsFullScreenElement(bool);
|
|
|