Bug 129433

Summary: Avoid calling logicalLeftOffsetForLine 2 times in LineWidth::fitBelowFloats
Product: WebKit Reporter: Zoltan Horvath <zoltan>
Component: CSSAssignee: Zoltan Horvath <zoltan>
Status: RESOLVED FIXED    
Severity: Normal CC: commit-queue, esprehn+autocc, glenn, kondapallykalyan
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
Patch
darin: review+, darin: commit-queue-
Patch none

Zoltan Horvath
Reported 2014-02-27 09:39:37 PST
This change updates fitBelowFloats and its helpers to call RenderBlock::logicalLeftOffsetForLine only once.
Attachments
Patch (5.45 KB, patch)
2014-02-27 09:42 PST, Zoltan Horvath
darin: review+
darin: commit-queue-
Patch (6.13 KB, patch)
2014-02-27 14:41 PST, Zoltan Horvath
no flags
Zoltan Horvath
Comment 1 2014-02-27 09:42:28 PST
Darin Adler
Comment 2 2014-02-27 12:17:17 PST
Comment on attachment 225384 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=225384&action=review > Source/WebCore/rendering/line/LineWidth.cpp:168 > +inline static float availableWidthAtOffset(const RenderBlockFlow& block, const LayoutUnit& offset, bool shouldIndentText, float& newLineLeft, float& newLineRight) > +{ > + newLineLeft = block.logicalLeftOffsetForLine(offset, shouldIndentText); > + newLineRight = block.logicalRightOffsetForLine(offset, shouldIndentText); > + return std::max(0.0f, newLineRight - newLineLeft); > +} > + > inline static float availableWidthAtOffset(const RenderBlock& block, const LayoutUnit& offset, bool shouldIndentText) Doesn’t seem good to repeat the function twice. Can we make the old function call the new one? > Source/WebCore/rendering/line/LineWidth.cpp:175 > +void LineWidth::updateLineDimension(LayoutUnit newLineTop, LayoutUnit newLineWidth, const float& newLineLeft, const float& newLineRight) Argument types here should just be float. No reason to pass "const float&". > Source/WebCore/rendering/line/LineWidth.h:79 > + void updateLineDimension(LayoutUnit newLineTop, LayoutUnit newLineWidth, const float& newLineLeft, const float& newLineRight); Argument types here should just be float. No reason to pass "const float&".
Zoltan Horvath
Comment 3 2014-02-27 14:41:04 PST
Created attachment 225413 [details] Patch > Doesn’t seem good to repeat the function twice. Can we make the old function call the new one? Good point. I changed it. > Argument types here should just be float. No reason to pass "const float&". I modified to use float. Thanks for the review!
WebKit Commit Bot
Comment 4 2014-02-27 15:18:33 PST
Comment on attachment 225413 [details] Patch Clearing flags on attachment: 225413 Committed r164834: <http://trac.webkit.org/changeset/164834>
WebKit Commit Bot
Comment 5 2014-02-27 15:18:35 PST
All reviewed patches have been landed. Closing bug.
Note You need to log in before you can comment on or make changes to this bug.