| Index: Source/core/layout/LayoutTextControl.h
|
| diff --git a/Source/core/layout/LayoutTextControl.h b/Source/core/layout/LayoutTextControl.h
|
| index e584b2e0e3de43c8642ceb7d148e8e6fad443b31..4032a1e08b24c5cce4fc0ad615e282cbe42768df 100644
|
| --- a/Source/core/layout/LayoutTextControl.h
|
| +++ b/Source/core/layout/LayoutTextControl.h
|
| @@ -35,7 +35,7 @@ public:
|
| virtual ~LayoutTextControl();
|
|
|
| HTMLTextFormControlElement* textFormControlElement() const;
|
| - virtual PassRefPtr<LayoutStyle> createInnerEditorStyle(const LayoutStyle& startStyle) const = 0;
|
| + virtual PassRefPtr<ComputedStyle> createInnerEditorStyle(const ComputedStyle& startStyle) const = 0;
|
|
|
| virtual const char* name() const override { return "LayoutTextControl"; }
|
|
|
| @@ -47,9 +47,9 @@ protected:
|
| HTMLElement* innerEditorElement() const;
|
|
|
| int scrollbarThickness() const;
|
| - void adjustInnerEditorStyle(LayoutStyle& textBlockStyle) const;
|
| + void adjustInnerEditorStyle(ComputedStyle& textBlockStyle) const;
|
|
|
| - virtual void styleDidChange(StyleDifference, const LayoutStyle* oldStyle) override;
|
| + virtual void styleDidChange(StyleDifference, const ComputedStyle* oldStyle) override;
|
|
|
| void hitInnerEditorElement(HitTestResult&, const LayoutPoint& pointInContainer, const LayoutPoint& accumulatedOffset);
|
|
|
|
|