Chromium Code Reviews| 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 ed11b8316bf79cb336dab9cc06d8cd91495bf4d6..e9c35c605dc194f1eb424474b1fbbfa673f3df15 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; |
|
dominicc (has gone to gerrit)
2016/08/03 07:56:56
Whoever changed this one forgot to keep them in al
|
| +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); |