| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * Copyright (C) 2003, 2006, 2007 Apple Inc. All rights reserved. | 4 * Copyright (C) 2003, 2006, 2007 Apple Inc. All rights reserved. |
| 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 14 matching lines...) Expand all Loading... |
| 25 | 25 |
| 26 #include "sky/engine/core/rendering/FilterEffectRenderer.h" | 26 #include "sky/engine/core/rendering/FilterEffectRenderer.h" |
| 27 #include "sky/engine/core/rendering/RenderBoxModelObject.h" | 27 #include "sky/engine/core/rendering/RenderBoxModelObject.h" |
| 28 #include "sky/engine/core/rendering/RenderOverflow.h" | 28 #include "sky/engine/core/rendering/RenderOverflow.h" |
| 29 | 29 |
| 30 namespace blink { | 30 namespace blink { |
| 31 | 31 |
| 32 struct LayerPaintingInfo; | 32 struct LayerPaintingInfo; |
| 33 struct PaintInfo; | 33 struct PaintInfo; |
| 34 class HitTestingTransformState; | 34 class HitTestingTransformState; |
| 35 class RenderBlockFlow; | |
| 36 class TransformationMatrix; | 35 class TransformationMatrix; |
| 37 | 36 |
| 38 enum SizeType { MainOrPreferredSize, MinSize, MaxSize }; | 37 enum SizeType { MainOrPreferredSize, MinSize, MaxSize }; |
| 39 enum AvailableLogicalHeightType { ExcludeMarginBorderPadding, IncludeMarginBorde
rPadding }; | 38 enum AvailableLogicalHeightType { ExcludeMarginBorderPadding, IncludeMarginBorde
rPadding }; |
| 40 enum MarginDirection { BlockDirection, InlineDirection }; | 39 enum MarginDirection { BlockDirection, InlineDirection }; |
| 41 | 40 |
| 42 enum ShouldComputePreferred { ComputeActual, ComputePreferred }; | 41 enum ShouldComputePreferred { ComputeActual, ComputePreferred }; |
| 43 | 42 |
| 44 enum ContentsClipBehavior { ForceContentsClip, SkipContentsClipIfPossible }; | 43 enum ContentsClipBehavior { ForceContentsClip, SkipContentsClipIfPossible }; |
| 45 | 44 |
| (...skipping 568 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 614 if (UNLIKELY(inlineBoxWrapper() != 0)) | 613 if (UNLIKELY(inlineBoxWrapper() != 0)) |
| 615 deleteLineBoxWrapper(); | 614 deleteLineBoxWrapper(); |
| 616 } | 615 } |
| 617 | 616 |
| 618 ensureRareData().m_inlineBoxWrapper = boxWrapper; | 617 ensureRareData().m_inlineBoxWrapper = boxWrapper; |
| 619 } | 618 } |
| 620 | 619 |
| 621 } // namespace blink | 620 } // namespace blink |
| 622 | 621 |
| 623 #endif // SKY_ENGINE_CORE_RENDERING_RENDERBOX_H_ | 622 #endif // SKY_ENGINE_CORE_RENDERING_RENDERBOX_H_ |
| OLD | NEW |