| Index: Source/core/html/shadow/TextControlInnerElements.h
|
| diff --git a/Source/core/html/shadow/TextControlInnerElements.h b/Source/core/html/shadow/TextControlInnerElements.h
|
| index 55b700cdfd2a9939feeb785cfd7fc557ff14d756..2ce291c610898c0187a9b728b33b0e6f8537e5a8 100644
|
| --- a/Source/core/html/shadow/TextControlInnerElements.h
|
| +++ b/Source/core/html/shadow/TextControlInnerElements.h
|
| @@ -38,7 +38,7 @@ public:
|
|
|
| protected:
|
| explicit TextControlInnerContainer(Document&);
|
| - virtual LayoutObject* createLayoutObject(const LayoutStyle&) override;
|
| + virtual LayoutObject* createLayoutObject(const ComputedStyle&) override;
|
| };
|
|
|
| class EditingViewPortElement final : public HTMLDivElement {
|
| @@ -47,7 +47,7 @@ public:
|
|
|
| protected:
|
| explicit EditingViewPortElement(Document&);
|
| - virtual PassRefPtr<LayoutStyle> customStyleForLayoutObject() override;
|
| + virtual PassRefPtr<ComputedStyle> customStyleForLayoutObject() override;
|
|
|
| private:
|
| virtual bool supportsFocus() const override { return false; }
|
| @@ -61,8 +61,8 @@ public:
|
|
|
| private:
|
| explicit TextControlInnerEditorElement(Document&);
|
| - virtual LayoutObject* createLayoutObject(const LayoutStyle&) override;
|
| - virtual PassRefPtr<LayoutStyle> customStyleForLayoutObject() override;
|
| + virtual LayoutObject* createLayoutObject(const ComputedStyle&) override;
|
| + virtual PassRefPtr<ComputedStyle> customStyleForLayoutObject() override;
|
| virtual bool supportsFocus() const override { return false; }
|
| };
|
|
|
|
|