X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fthird_party%2FWebKit%2FSource%2Fcore%2Frendering%2FRenderFlexibleBox.h;h=342a6a73e6ea28e6d3b87b84b26ea93fcc1eb2cb;hb=4a1a0bdd01eef90b0826a0e761d3379d3715c10f;hp=6a34e899c34ce7b8d2e291f04ff14f02373ed4a0;hpb=b1be5ca53587d23e7aeb77b26861fdc0a181ffd8;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/third_party/WebKit/Source/core/rendering/RenderFlexibleBox.h b/src/third_party/WebKit/Source/core/rendering/RenderFlexibleBox.h index 6a34e89..342a6a7 100644 --- a/src/third_party/WebKit/Source/core/rendering/RenderFlexibleBox.h +++ b/src/third_party/WebKit/Source/core/rendering/RenderFlexibleBox.h @@ -34,7 +34,7 @@ #include "core/rendering/OrderIterator.h" #include "core/rendering/RenderBlock.h" -namespace WebCore { +namespace blink { class RenderFlexibleBox : public RenderBlock { public: @@ -46,7 +46,6 @@ public: virtual const char* renderName() const OVERRIDE; virtual bool isFlexibleBox() const OVERRIDE FINAL { return true; } - virtual bool avoidsFloats() const OVERRIDE FINAL { return true; } virtual bool canCollapseAnonymousBlockChild() const OVERRIDE { return false; } virtual void layoutBlock(bool relayoutChildren) OVERRIDE FINAL; @@ -113,6 +112,7 @@ private: LayoutUnit flowAwareMarginBeforeForChild(RenderBox* child) const; LayoutUnit crossAxisMarginExtentForChild(RenderBox* child) const; LayoutUnit crossAxisScrollbarExtent() const; + LayoutUnit crossAxisScrollbarExtentForChild(RenderBox* child) const; LayoutPoint flowAwareLocationForChild(RenderBox* child) const; // FIXME: Supporting layout deltas. void setFlowAwareLocationForChild(RenderBox* child, const LayoutPoint&); @@ -131,7 +131,6 @@ private: void repositionLogicalHeightDependentFlexItems(Vector&); LayoutUnit clientLogicalBottomAfterRepositioning(); void appendChildFrameRects(ChildFrameRects&); - void repaintChildrenDuringLayoutIfMoved(const ChildFrameRects&); LayoutUnit availableAlignmentSpaceForChild(LayoutUnit lineCrossAxisExtent, RenderBox*); LayoutUnit availableAlignmentSpaceForChildBeforeStretching(LayoutUnit lineCrossAxisExtent, RenderBox*); @@ -167,6 +166,6 @@ private: DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderFlexibleBox, isFlexibleBox()); -} // namespace WebCore +} // namespace blink #endif // RenderFlexibleBox_h