| Index: third_party/WebKit/Source/core/svg/SVGElement.h
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGElement.h b/third_party/WebKit/Source/core/svg/SVGElement.h
|
| index 796ca403821aebf2d36cca3825e3b7b07408c547..1f485b9f6dc66202f07bd96d234f0b1487c13d4e 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGElement.h
|
| +++ b/third_party/WebKit/Source/core/svg/SVGElement.h
|
| @@ -234,8 +234,8 @@ private:
|
| bool isSVGElement() const = delete; // This will catch anyone doing an unnecessary check.
|
| bool isStyledElement() const = delete; // This will catch anyone doing an unnecessary check.
|
|
|
| - const ComputedStyle* ensureComputedStyle(PseudoId = NOPSEUDO);
|
| - const ComputedStyle* virtualEnsureComputedStyle(PseudoId pseudoElementSpecifier = NOPSEUDO) final { return ensureComputedStyle(pseudoElementSpecifier); }
|
| + const ComputedStyle* ensureComputedStyle(PseudoId = PseudoIdNoPseudo);
|
| + const ComputedStyle* virtualEnsureComputedStyle(PseudoId pseudoElementSpecifier = PseudoIdNoPseudo) final { return ensureComputedStyle(pseudoElementSpecifier); }
|
| void willRecalcStyle(StyleRecalcChange) override;
|
|
|
| void buildPendingResourcesIfNeeded();
|
|
|