| Index: Source/core/layout/LayoutRuby.h
|
| diff --git a/Source/core/layout/LayoutRuby.h b/Source/core/layout/LayoutRuby.h
|
| index c7cec458e7067f8c89e242b2960248f35ce70ab8..4d922232b26c69b977ba1056db9ba0871fae7dc9 100644
|
| --- a/Source/core/layout/LayoutRuby.h
|
| +++ b/Source/core/layout/LayoutRuby.h
|
| @@ -62,7 +62,7 @@ public:
|
| virtual const char* name() const override { return "LayoutRuby (inline)"; }
|
|
|
| protected:
|
| - virtual void styleDidChange(StyleDifference, const LayoutStyle* oldStyle) override;
|
| + virtual void styleDidChange(StyleDifference, const ComputedStyle* oldStyle) override;
|
|
|
| private:
|
| virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectRuby || LayoutInline::isOfType(type); }
|
| @@ -81,7 +81,7 @@ public:
|
| virtual const char* name() const override { return "LayoutRuby (block)"; }
|
|
|
| protected:
|
| - virtual void styleDidChange(StyleDifference, const LayoutStyle* oldStyle) override;
|
| + virtual void styleDidChange(StyleDifference, const ComputedStyle* oldStyle) override;
|
|
|
| private:
|
| virtual bool isOfType(LayoutObjectType type) const override { return type == LayoutObjectRuby || LayoutBlockFlow::isOfType(type); }
|
|
|