| Index: sky/engine/core/dom/Element.h
|
| diff --git a/sky/engine/core/dom/Element.h b/sky/engine/core/dom/Element.h
|
| index ab29ebc6b79fd612121a12274d439132ecda77fd..4748002f98808d36507fbd07cf2d1e62a959f8e9 100644
|
| --- a/sky/engine/core/dom/Element.h
|
| +++ b/sky/engine/core/dom/Element.h
|
| @@ -207,7 +207,7 @@ public:
|
|
|
| bool hasAuthorShadowRoot() const { return shadowRoot(); }
|
|
|
| - RenderStyle* computedStyle(PseudoId = NOPSEUDO);
|
| + RenderStyle* computedStyle();
|
|
|
| bool isUpgradedCustomElement() const { return customElementState() == Upgraded; }
|
| bool isUnresolvedCustomElement() const { return customElementState() == WaitingForUpgrade; }
|
| @@ -342,7 +342,7 @@ private:
|
| virtual void formatForDebugger(char* buffer, unsigned length) const override;
|
| #endif
|
|
|
| - virtual RenderStyle* virtualComputedStyle(PseudoId pseudoElementSpecifier = NOPSEUDO) override { return computedStyle(pseudoElementSpecifier); }
|
| + virtual RenderStyle* virtualComputedStyle() override { return computedStyle(); }
|
|
|
| // cloneNode is private so that non-virtual cloneElementWithChildren and cloneElementWithoutChildren
|
| // are used instead.
|
|
|