| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 virtual void paintChildren(PaintInfo&, const LayoutPoint&) OVERRIDE FINAL; | 57 virtual void paintChildren(PaintInfo&, const LayoutPoint&) OVERRIDE FINAL; |
| 58 | 58 |
| 59 bool isHorizontalFlow() const; | 59 bool isHorizontalFlow() const; |
| 60 | 60 |
| 61 protected: | 61 protected: |
| 62 virtual void computeIntrinsicLogicalWidths(LayoutUnit& minLogicalWidth, Layo
utUnit& maxLogicalWidth) const OVERRIDE; | 62 virtual void computeIntrinsicLogicalWidths(LayoutUnit& minLogicalWidth, Layo
utUnit& maxLogicalWidth) const OVERRIDE; |
| 63 virtual void computePreferredLogicalWidths() OVERRIDE; | 63 virtual void computePreferredLogicalWidths() OVERRIDE; |
| 64 | 64 |
| 65 virtual void styleDidChange(StyleDifference, const RenderStyle* oldStyle); | 65 virtual void styleDidChange(StyleDifference, const RenderStyle* oldStyle); |
| 66 | 66 |
| 67 virtual void removeChild(RenderObject* child) OVERRIDE; | |
| 68 | |
| 69 private: | 67 private: |
| 70 enum FlexSign { | 68 enum FlexSign { |
| 71 PositiveFlexibility, | 69 PositiveFlexibility, |
| 72 NegativeFlexibility, | 70 NegativeFlexibility, |
| 73 }; | 71 }; |
| 74 | 72 |
| 75 enum PositionedLayoutMode { | 73 enum PositionedLayoutMode { |
| 76 FlipForRowReverse, | 74 FlipForRowReverse, |
| 77 NoFlipForRowReverse, | 75 NoFlipForRowReverse, |
| 78 }; | 76 }; |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 ASSERT_WITH_SECURITY_IMPLICATION(!object || object->isFlexibleBox()); | 171 ASSERT_WITH_SECURITY_IMPLICATION(!object || object->isFlexibleBox()); |
| 174 return static_cast<const RenderFlexibleBox*>(object); | 172 return static_cast<const RenderFlexibleBox*>(object); |
| 175 } | 173 } |
| 176 | 174 |
| 177 // This will catch anyone doing an unnecessary cast. | 175 // This will catch anyone doing an unnecessary cast. |
| 178 void toRenderFlexibleBox(const RenderFlexibleBox*); | 176 void toRenderFlexibleBox(const RenderFlexibleBox*); |
| 179 | 177 |
| 180 } // namespace WebCore | 178 } // namespace WebCore |
| 181 | 179 |
| 182 #endif // RenderFlexibleBox_h | 180 #endif // RenderFlexibleBox_h |
| OLD | NEW |