Bug 193383

Summary: [LFC] Block/InlinFormattingContext should take Block/InlineFormattingState
Product: WebKit Reporter: zalan <zalan>
Component: Layout and RenderingAssignee: zalan <zalan>
Status: RESOLVED FIXED    
Severity: Normal CC: bfulgham, koivisto, simon.fraser, webkit-bug-importer, zalan
Priority: P2 Keywords: InRadar
Version: WebKit Nightly Build   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
Patch koivisto: review+

Description zalan 2019-01-12 12:44:49 PST
This is a just downcast really.
Comment 1 zalan 2019-01-12 12:47:00 PST
Created attachment 358995 [details]
Patch
Comment 2 Antti Koivisto 2019-01-12 12:55:03 PST
Comment on attachment 358995 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=358995&action=review

> Source/WebCore/layout/FormattingContext.h:-68
> -    FormattingState& formattingState() const;

I think you could also keep this as-is (and keep m_formattingState private). You can override a function with a more specific return type in the subclass:

BlockFormattingState& formattingState() const { return downcast<BlockFormattingState>(FormattingContext::formattingState()); }
Comment 3 zalan 2019-01-12 13:28:21 PST
Committed r239903: <https://trac.webkit.org/changeset/239903>
Comment 4 Radar WebKit Bug Importer 2019-01-12 13:29:33 PST
<rdar://problem/47234302>