| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Adobe Systems Incorporated. All rights reserved. | 2 * Copyright (C) 2012 Adobe Systems Incorporated. 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 | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above | 8 * 1. Redistributions of source code must retain the above |
| 9 * copyright notice, this list of conditions and the following | 9 * copyright notice, this list of conditions and the following |
| 10 * disclaimer. | 10 * disclaimer. |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 | 29 |
| 30 #ifndef ShapeOutsideInfo_h | 30 #ifndef ShapeOutsideInfo_h |
| 31 #define ShapeOutsideInfo_h | 31 #define ShapeOutsideInfo_h |
| 32 | 32 |
| 33 #include "core/rendering/shapes/Shape.h" | 33 #include "core/rendering/shapes/Shape.h" |
| 34 #include "core/rendering/style/RenderStyle.h" | 34 #include "core/rendering/style/RenderStyle.h" |
| 35 #include "core/rendering/style/ShapeValue.h" | 35 #include "core/rendering/style/ShapeValue.h" |
| 36 #include "platform/geometry/FloatRect.h" | 36 #include "platform/geometry/FloatRect.h" |
| 37 #include "platform/geometry/LayoutSize.h" | 37 #include "platform/geometry/LayoutSize.h" |
| 38 #include "wtf/OwnPtr.h" | 38 #include "wtf/OwnPtr.h" |
| 39 #include "wtf/Vector.h" | |
| 40 | 39 |
| 41 namespace blink { | 40 namespace blink { |
| 42 | 41 |
| 43 class RenderBlockFlow; | 42 class RenderBlockFlow; |
| 44 class RenderBox; | 43 class RenderBox; |
| 45 class FloatingObject; | 44 class FloatingObject; |
| 46 | 45 |
| 47 class ShapeOutsideInfo FINAL { | 46 class ShapeOutsideInfo FINAL { |
| 48 WTF_MAKE_FAST_ALLOCATED; | 47 WTF_MAKE_FAST_ALLOCATED; |
| 49 public: | 48 public: |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 mutable OwnPtr<Shape> m_shape; | 119 mutable OwnPtr<Shape> m_shape; |
| 121 LayoutSize m_referenceBoxLogicalSize; | 120 LayoutSize m_referenceBoxLogicalSize; |
| 122 LayoutUnit m_leftMarginBoxDelta; | 121 LayoutUnit m_leftMarginBoxDelta; |
| 123 LayoutUnit m_rightMarginBoxDelta; | 122 LayoutUnit m_rightMarginBoxDelta; |
| 124 LayoutUnit m_borderBoxLineTop; | 123 LayoutUnit m_borderBoxLineTop; |
| 125 bool m_lineOverlapsShape; | 124 bool m_lineOverlapsShape; |
| 126 }; | 125 }; |
| 127 | 126 |
| 128 } | 127 } |
| 129 #endif | 128 #endif |
| OLD | NEW |