| 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 100929421eb0a593eb94b1bcf536e52be4f591f8..ac8818e3f3ce85ccf804f76e811c480ec334e702 100644
|
| --- a/third_party/WebKit/Source/core/dom/Element.h
|
| +++ b/third_party/WebKit/Source/core/dom/Element.h
|
| @@ -374,8 +374,8 @@ public:
|
| void setIsInCanvasSubtree(bool value) { setElementFlag(IsInCanvasSubtree, value); }
|
| bool isInCanvasSubtree() const { return hasElementFlag(IsInCanvasSubtree); }
|
|
|
| - bool isUpgradedCustomElement() { return getCustomElementState() == Upgraded; }
|
| - bool isUnresolvedCustomElement() { return getCustomElementState() == WaitingForUpgrade; }
|
| + bool isUpgradedV0CustomElement() { return getV0CustomElementState() == V0Upgraded; }
|
| + bool isUnresolvedV0CustomElement() { return getV0CustomElementState() == V0WaitingForUpgrade; }
|
|
|
| AtomicString computeInheritedLanguage() const;
|
| Locale& locale() const;
|
|
|