Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(315)

Side by Side Diff: Source/core/rendering/RenderDeprecatedFlexibleBox.h

Issue 26588002: Remove support for -webkit-line-clamp Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Base files missing... Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * This file is part of the render object implementation for KHTML. 2 * This file is part of the render object implementation for KHTML.
3 * 3 *
4 * Copyright (C) 2003 Apple Computer, Inc. 4 * Copyright (C) 2003 Apple Computer, Inc.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 20 matching lines...) Expand all
31 31
32 class RenderDeprecatedFlexibleBox FINAL : public RenderBlock { 32 class RenderDeprecatedFlexibleBox FINAL : public RenderBlock {
33 public: 33 public:
34 RenderDeprecatedFlexibleBox(Element*); 34 RenderDeprecatedFlexibleBox(Element*);
35 virtual ~RenderDeprecatedFlexibleBox(); 35 virtual ~RenderDeprecatedFlexibleBox();
36 36
37 static RenderDeprecatedFlexibleBox* createAnonymous(Document*); 37 static RenderDeprecatedFlexibleBox* createAnonymous(Document*);
38 38
39 virtual const char* renderName() const; 39 virtual const char* renderName() const;
40 40
41 virtual void styleWillChange(StyleDifference, const RenderStyle* newStyle) O VERRIDE;
42
43 virtual void layoutBlock(bool relayoutChildren, LayoutUnit pageHeight = 0); 41 virtual void layoutBlock(bool relayoutChildren, LayoutUnit pageHeight = 0);
44 void layoutHorizontalBox(bool relayoutChildren); 42 void layoutHorizontalBox(bool relayoutChildren);
45 void layoutVerticalBox(bool relayoutChildren); 43 void layoutVerticalBox(bool relayoutChildren);
46 44
47 virtual bool avoidsFloats() const { return true; } 45 virtual bool avoidsFloats() const { return true; }
48 virtual bool isDeprecatedFlexibleBox() const { return true; } 46 virtual bool isDeprecatedFlexibleBox() const { return true; }
49 virtual bool isStretchingChildren() const { return m_stretchingChildren; } 47 virtual bool isStretchingChildren() const { return m_stretchingChildren; }
50 virtual bool canCollapseAnonymousBlockChild() const OVERRIDE { return false; } 48 virtual bool canCollapseAnonymousBlockChild() const OVERRIDE { return false; }
51 49
52 void placeChild(RenderBox* child, const LayoutPoint& location); 50 void placeChild(RenderBox* child, const LayoutPoint& location);
53 51
54 protected: 52 protected:
55 virtual void computeIntrinsicLogicalWidths(LayoutUnit& minLogicalWidth, Layo utUnit& maxLogicalWidth) const OVERRIDE; 53 virtual void computeIntrinsicLogicalWidths(LayoutUnit& minLogicalWidth, Layo utUnit& maxLogicalWidth) const OVERRIDE;
56 virtual void computePreferredLogicalWidths() OVERRIDE; 54 virtual void computePreferredLogicalWidths() OVERRIDE;
57 55
58 LayoutUnit allowedChildFlex(RenderBox* child, bool expanding, unsigned group ); 56 LayoutUnit allowedChildFlex(RenderBox* child, bool expanding, unsigned group );
59 57
60 bool hasMultipleLines() const { return style()->boxLines() == MULTIPLE; } 58 bool hasMultipleLines() const { return style()->boxLines() == MULTIPLE; }
61 bool isVertical() const { return style()->boxOrient() == VERTICAL; } 59 bool isVertical() const { return style()->boxOrient() == VERTICAL; }
62 bool isHorizontal() const { return style()->boxOrient() == HORIZONTAL; } 60 bool isHorizontal() const { return style()->boxOrient() == HORIZONTAL; }
63 61
64 bool m_stretchingChildren; 62 bool m_stretchingChildren;
65 63
66 private: 64 private:
67 virtual bool supportsPartialLayout() const OVERRIDE { return false; } 65 virtual bool supportsPartialLayout() const OVERRIDE { return false; }
68
69 void applyLineClamp(FlexBoxIterator&, bool relayoutChildren);
70 void clearLineClamp();
71 }; 66 };
72 67
73 } // namespace WebCore 68 } // namespace WebCore
74 69
75 #endif // RenderDeprecatedFlexibleBox_h 70 #endif // RenderDeprecatedFlexibleBox_h
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderBlock.cpp ('k') | Source/core/rendering/RenderDeprecatedFlexibleBox.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698